mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:45:55 +00:00
headlines: use JSON instead of separate helper xml objects like headlines-unread
This commit is contained in:
19
backend.php
19
backend.php
@@ -363,8 +363,8 @@
|
||||
|
||||
print "]]></headlines>";
|
||||
|
||||
print "<headlines-count value=\"$headlines_count\"/>";
|
||||
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
||||
//print "<headlines-count value=\"$headlines_count\"/>";
|
||||
//print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
||||
|
||||
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
|
||||
$cat_view, true);
|
||||
@@ -374,8 +374,19 @@
|
||||
|
||||
}
|
||||
|
||||
print "<headlines-unread value=\"$headlines_unread\"/>";
|
||||
printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
||||
//print "<headlines-unread value=\"$headlines_unread\"/>";
|
||||
//printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
||||
|
||||
print "<headlines-info><![CDATA[";
|
||||
|
||||
$info = array("count" => (int) $headlines_count,
|
||||
"vgroup_last_feed" => $vgroup_last_feed,
|
||||
"unread" => (int) $headlines_unread,
|
||||
"disable_cache" => (bool) $disable_cache);
|
||||
|
||||
print json_encode($info);
|
||||
|
||||
print "]]></headlines-info>";
|
||||
|
||||
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("10", $timing_info);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user