]> git.wh0rd.org - tt-rss.git/blobdiff - errors.php
overall directory tree cleanup
[tt-rss.git] / errors.php
index 16efd09a9e0bfff6eaa1ad41b229cb223b15eeb7..802947d985c508c1e8288157e3ff3d284d727794 100644 (file)
@@ -1,5 +1,9 @@
 <?php
-       $ERRORS[0] = __("Unknown error");
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
+
+       require_once "functions.php";
+
+       $ERRORS[0] = "";
 
        $ERRORS[1] = __("This program requires XmlHttpRequest " .
                        "to function properly. Your browser doesn't seem to support it.");
@@ -11,7 +15,7 @@
 
        $ERRORS[4] = __("Frontend sanity check failed.");
 
-       $ERRORS[5] = __("Incorrect database schema version. &lt;a href='update.php'&gt;Please update&lt;/a&gt;.");
+       $ERRORS[5] = __("Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;.");
 
        $ERRORS[6] = __("Request not authorized.");
 
 
        $ERRORS[9] = __("Configuration check failed");
 
-       $ERRORS[10] = __("Your version of MySQL is not currently supported. Please see 
+       $ERRORS[10] = __("Your version of MySQL is not currently supported. Please see
                official site for more information.");
+
+       $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";
+               }
+       }
 ?>