1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-31 00:41:27 +00:00

render feedlist using local data when in offline mode

This commit is contained in:
Andrew Dolgov
2009-02-03 17:03:35 +03:00
parent fe8f2f0c0d
commit 36f787976f
3 changed files with 63 additions and 5 deletions

View File

@@ -532,7 +532,10 @@
ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"]);
while ($line = db_fetch_assoc($result)) {
print "<feed id=\"".$line["id"]."\"><![CDATA[";
$has_icon = (int) feed_has_icon($line["id"]);
print "<feed has_icon=\"$has_icon\" id=\"".$line["id"]."\"><![CDATA[";
print $line["title"];
print "]]></feed>";
}