summaryrefslogtreecommitdiff
path: root/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 10:24:13 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 10:24:13 +0100
commitcc17c20574dbc0d2756bd6f75ca68588867eac25 (patch)
treeb9c3573f61073e487421b28b0cb648d084ad9bba /sanity_check.php
parent1025ad87633f30d00a3c283b3e8ad2bafa384a5c (diff)
more I18N work, new option: ENABLE_TRANSLATIONS
Diffstat (limited to 'sanity_check.php')
-rw-r--r--sanity_check.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/sanity_check.php b/sanity_check.php
index 5361c7aa9..721c7140f 100644
--- a/sanity_check.php
+++ b/sanity_check.php
@@ -1,7 +1,7 @@
<?php
require_once "functions.php";
- define('EXPECTED_CONFIG_VERSION', 5);
+ define('EXPECTED_CONFIG_VERSION', 7);
if (!file_exists("config.php")) {
print __("<b>Fatal Error</b>: You forgot to copy
@@ -12,7 +12,7 @@
require_once "config.php";
if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
- return __("config: your config file version is incorrect. See config.php-dist.\n");
+ $err_msg = __("config: your config file version is incorrect. See config.php-dist.\n");
}
if (defined('RSS_BACKEND_TYPE')) {