1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 09:15:55 +00:00

reduce the number of always included libraries

This commit is contained in:
Andrew Dolgov
2011-12-11 23:10:51 +04:00
parent c902b6442d
commit 31303c6bbd
5 changed files with 46 additions and 34 deletions

View File

@@ -18,7 +18,6 @@
require_once "functions.php";
if ($op != "share") require_once "sessions.php";
require_once "modules/backend-rpc.php";
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
@@ -126,7 +125,7 @@
5 => __("Power User"),
10 => __("Administrator"));
$error = sanity_check($link);
@@ -137,7 +136,7 @@
switch($op) { // Select action according to $op value.
case "rpc":
// Handle remote procedure calls.
require_once "modules/backend-rpc.php";
handle_rpc_request($link);
break; // rpc
@@ -394,7 +393,6 @@
$reply['runtime-info'] = make_runtime_info($link);
print json_encode($reply);
break; // viewfeed
case "pref-feeds":