mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-08 17:41:03 +02:00
update_rss_feed: fix proper typecasting of mark_unread_on_update/update_on_checksum_change
This commit is contained in:
parent
74b046a1c9
commit
30a2fe5a2a
@ -532,8 +532,10 @@
|
||||
$update_method = db_fetch_result($result, 0, "update_method");
|
||||
$last_updated = db_fetch_result($result, 0, "last_updated");
|
||||
$owner_uid = db_fetch_result($result, 0, "owner_uid");
|
||||
$mark_unread_on_update = db_fetch_result($result, 0, "mark_unread_on_update");
|
||||
$update_on_checksum_change = db_fetch_result($result, 0, "update_on_checksum_change");
|
||||
$mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
|
||||
0, "mark_unread_on_update"));
|
||||
$update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result,
|
||||
0, "update_on_checksum_change"));
|
||||
|
||||
db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
|
||||
WHERE id = '$feed'");
|
||||
|
Loading…
x
Reference in New Issue
Block a user