From 27f7b59353a076120407d8873ea86f5eea7d1dcf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 30 Mar 2015 13:02:24 +0300 Subject: add a wrapper for standard error codes returned by backend, also add explanation to the error object if possible --- backend.php | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'backend.php') diff --git a/backend.php b/backend.php index 84abc9730..150481cfe 100644 --- a/backend.php +++ b/backend.php @@ -63,7 +63,7 @@ if ($_SESSION["uid"]) { if (!validate_session()) { header("Content-Type: text/json"); - print json_encode(array("error" => array("code" => 6))); + print error_json(6); return; } load_user_plugins( $_SESSION["uid"]); @@ -104,13 +104,6 @@ 5 => __("Power User"), 10 => __("Administrator")); - #$error = sanity_check(); - - #if ($error['code'] != 0 && $op != "logout") { - # print json_encode(array("error" => $error)); - # return; - #} - $op = str_replace("-", "_", $op); $override = PluginHost::getInstance()->lookup_handler($op, $method); @@ -137,18 +130,18 @@ return; } else { header("Content-Type: text/json"); - print json_encode(array("error" => array("code" => 6))); + print error_json(6); return; } } else { header("Content-Type: text/json"); - print json_encode(array("error" => array("code" => 6))); + print error_json(6); return; } } } header("Content-Type: text/json"); - print json_encode(array("error" => array("code" => 7))); + print error_json(13); ?> -- cgit v1.2.3-54-g00ecf