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

Switch to 'get_error_types()' to ensure availability in 'include/functions.php'.

The global in 'sanity_check()' was null... possibly due to circular requires?
This commit is contained in:
wn
2020-12-12 09:50:43 -06:00
parent 08a6f6bde2
commit 6bdf4a1a25
2 changed files with 24 additions and 22 deletions

View File

@@ -327,7 +327,7 @@
function sanity_check() {
require_once 'errors.php';
global $ERRORS;
$ERRORS = get_error_types();
$error_code = 0;
$schema_version = get_schema_version(true);
@@ -540,7 +540,7 @@
*/
function error_json($code) {
require_once "errors.php";
global $ERRORS;
$ERRORS = get_error_types();
@$message = $ERRORS[$code];