mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 18:35:57 +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:
@@ -2452,4 +2452,14 @@
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function error_json($code) {
|
||||
require_once "errors.php";
|
||||
|
||||
@$message = $ERRORS[$code];
|
||||
|
||||
return json_encode(array("error" =>
|
||||
array("code" => $code, "message" => $message)));
|
||||
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user