summaryrefslogtreecommitdiff
path: root/errors.php
blob: 556af08829b1e74bd3c0dd06c84ae9a7b2c36813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?
	$ERRORS[0] = "Unknown error";

	$ERRORS[1] = "This program requires XmlHttpRequest " .
			"to function properly. Your browser doesn't seem to support it.";

	$ERRORS[2] = "This program requires cookies " .
			"to function properly. Your browser doesn't seem to support them.";

	$ERRORS[3] = "Backend sanity check failed";

	$ERRORS[4] = "Frontend sanity check failed.";

	$ERRORS[5] = "Incorrect database schema version.";

	$ERRORS[6] = "Request not authorized.";

	$ERRORS[7] = "No operation to perform.";

	$ERRORS[8] = "Could not display feed: query failed. Please check label match syntax or local configuration.";

	$ERRORS[8] = "Denied. Your access level is insufficient to access this page.";

	$ERRORS[9] = "Configuration check failed";
?>