mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-31 21:51:29 +00:00
add a wrapper for standard error codes returned by backend, also add explanation to the error object if possible
This commit is contained in:
@@ -706,7 +706,7 @@ class Handler_Public extends Handler {
|
||||
|
||||
function index() {
|
||||
header("Content-Type: text/plain");
|
||||
print json_encode(array("error" => array("code" => 7)));
|
||||
print error_json(13);
|
||||
}
|
||||
|
||||
function forgotpass() {
|
||||
|
||||
@@ -11,10 +11,10 @@ class PluginHandler extends Handler_Protected {
|
||||
if (method_exists($plugin, $method)) {
|
||||
$plugin->$method();
|
||||
} else {
|
||||
print json_encode(array("error" => "METHOD_NOT_FOUND"));
|
||||
print error_json(13);
|
||||
}
|
||||
} else {
|
||||
print json_encode(array("error" => "PLUGIN_NOT_FOUND"));
|
||||
print error_json(14);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user