Fixed time stamping of new unmarked/unpublished articles
This commit is contained in:
parent
36eed4d737
commit
26ad257de5
1 changed files with 2 additions and 2 deletions
|
@ -945,8 +945,8 @@ class RSSUtils {
|
||||||
$published = 0;
|
$published = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
$last_marked = ($marked == 'true') ? 'NOW()' : null;
|
$last_marked = ($marked == 1) ? 'NOW()' : 'NULL';
|
||||||
$last_published = ($published == 'true') ? 'NOW()' : null;
|
$last_published = ($published == 1) ? 'NOW()' : 'NULL';
|
||||||
|
|
||||||
$sth = $pdo->prepare(
|
$sth = $pdo->prepare(
|
||||||
"INSERT INTO ttrss_user_entries
|
"INSERT INTO ttrss_user_entries
|
||||||
|
|
Loading…
Reference in a new issue