mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 12:25:56 +00:00
initial implementation of feedlist based on dijit.Tree
This commit is contained in:
11
backend.php
11
backend.php
@@ -50,7 +50,8 @@
|
||||
|
||||
if ((!$op || $op == "rpc" || $op == "rss" ||
|
||||
($op == "view" && $mode != "zoom") ||
|
||||
$op == "digestSend" || $op == "dlg" || $op == "viewfeed" || $op == "publish" ||
|
||||
$op == "digestSend" || $op == "dlg" ||
|
||||
$op == "viewfeed" || $op == "publish" ||
|
||||
$op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
|
||||
header("Content-Type: application/xml; charset=utf-8");
|
||||
|
||||
@@ -160,10 +161,7 @@
|
||||
break; // rpc
|
||||
|
||||
case "feeds":
|
||||
if (ENABLE_GZIP_OUTPUT) {
|
||||
ob_start("ob_gzhandler");
|
||||
}
|
||||
|
||||
$print_exec_time = true;
|
||||
$tags = $_REQUEST["tags"];
|
||||
|
||||
$subop = $_REQUEST["subop"];
|
||||
@@ -208,7 +206,8 @@
|
||||
|
||||
}
|
||||
|
||||
outputFeedList($link, $tags);
|
||||
print json_encode(outputFeedList($link, $tags));
|
||||
|
||||
break; // feeds
|
||||
|
||||
case "view":
|
||||
|
||||
Reference in New Issue
Block a user