summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/feeds.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index d1ef16738..4f0ac4f3f 100644
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -745,29 +745,6 @@ class Feeds extends Protected_Handler {
toggle_collapse_cat($this->link, $cat_id, $mode);
}
- function index() {
- $root = (bool)$_REQUEST["root"];
-
- if (!$root) {
- print json_encode($this->outputFeedList($this->link));
- } else {
-
- $feeds = $this->outputFeedList($this->link, false);
-
- $root = array();
- $root['id'] = 'root';
- $root['name'] = __('Feeds');
- $root['items'] = $feeds['items'];
-
- $fl = array();
- $fl['identifier'] = 'id';
- $fl['label'] = 'name';
- $fl['items'] = array($root);
-
- print json_encode($fl);
- }
- }
-
function view() {
$timing_info = getmicrotime();