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

fix fatalError() not working properly

This commit is contained in:
Andrew Dolgov
2011-02-18 12:28:03 +03:00
parent d195055341
commit 6853521166
5 changed files with 56 additions and 23 deletions

View File

@@ -1,4 +1,5 @@
<?php
require_once "functions.php";
$ERRORS[0] = __("Unknown error");
@@ -30,4 +31,18 @@
$ERRORS[11] = "[This error is not returned by server]";
$ERRORS[12] = __("SQL escaping test failed, check your database and PHP configuration");
if ($_REQUEST['mode'] == 'js') {
header("Content-Type: text/plain; charset=UTF-8");
print "var ERRORS = [];\n";
foreach ($ERRORS as $id => $error) {
$error = preg_replace("/\n/", "", $error);
$error = preg_replace("/\"/", "\\\"", $error);
print "ERRORS[$id] = \"$error\";\n";
}
}
?>