1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:25:54 +00:00

move help to backend class

This commit is contained in:
Andrew Dolgov
2011-12-13 11:02:43 +04:00
parent 611efae712
commit 4f09f594c2
3 changed files with 19 additions and 16 deletions

View File

@@ -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)));