1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:05:55 +00:00

article download fixes

This commit is contained in:
Andrew Dolgov
2009-02-03 16:26:45 +03:00
parent 6a1cd59192
commit fe8f2f0c0d
3 changed files with 15 additions and 5 deletions

View File

@@ -568,6 +568,10 @@
while ($line = db_fetch_assoc($result)) {
print "<article><![CDATA[";
$line["marked"] = (int)sql_bool_to_bool($line["marked"]);
$line["unread"] = (int)sql_bool_to_bool($line["unread"]);
print json_encode($line);
print "]]></article>";
}