]> git.wh0rd.org - tt-rss.git/blobdiff - errors.php
fix fatalError() not working properly
[tt-rss.git] / errors.php
index b2e0841a3a7577e48979f92faaa3fe0926ced9c8..cd76d10a680261f72e74832cb63724306731b598 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+       require_once "functions.php";
 
        $ERRORS[0] = __("Unknown error");
 
        $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";
+               }
+       }
 ?>