mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:05:56 +00:00
Fixed time stamping of new unmarked/unpublished articles
This commit is contained in:
@@ -945,8 +945,8 @@ class RSSUtils {
|
||||
$published = 0;
|
||||
}
|
||||
|
||||
$last_marked = ($marked == 'true') ? 'NOW()' : null;
|
||||
$last_published = ($published == 'true') ? 'NOW()' : null;
|
||||
$last_marked = ($marked == 1) ? 'NOW()' : 'NULL';
|
||||
$last_published = ($published == 1) ? 'NOW()' : 'NULL';
|
||||
|
||||
$sth = $pdo->prepare(
|
||||
"INSERT INTO ttrss_user_entries
|
||||
|
||||
Reference in New Issue
Block a user