summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-13 11:02:43 +0400
committerAndrew Dolgov <[email protected]>2011-12-13 11:02:43 +0400
commit4f09f594c24a2fbdacd6124ecdeb07b92814cb88 (patch)
tree03882834ec81b4d4bd2953632de486a444872582 /backend.php
parent611efae712769e38e232478b484779d73af263db (diff)
move help to backend class
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/backend.php b/backend.php
index 0390ed761..8f197ee30 100644
--- a/backend.php
+++ b/backend.php
@@ -171,26 +171,11 @@
module_pref_users($link);
break; // prefs-users
- case "help":
- require_once "modules/help.php";
- module_help($link);
- break; // help
-
case "pref-instances":
require_once "modules/pref-instances.php";
module_pref_instances($link);
break; // pref-instances
- case "digestSend":
- send_headlines_digests($link);
- break; // digestSend
-
- case "loading":
- header("Content-type: text/html");
- print __("Loading, please wait...") . " " .
- "<img src='images/indicator_tiny.gif'>";
- break; // loading
-
default:
header("Content-Type: text/plain");
print json_encode(array("error" => array("code" => 7)));