diff options
-rwxr-xr-x | usr/local/www/preload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/preload.php b/usr/local/www/preload.php index 0774949..c70d54e 100755 --- a/usr/local/www/preload.php +++ b/usr/local/www/preload.php @@ -3,7 +3,7 @@ /* make sure we are coming from 127.0.0.1 */ $ip = $HTTP_SERVER_VARS['REMOTE_ADDR']; if($ip <> "127.0.0.1") - die("You are not allowed to access this page."); + die(gettext("You are not allowed to access this page.")); /* preload */ @@ -63,4 +63,4 @@ include('/usr/local/www/includes/functions.inc.php'); include("fbegin.inc"); include("fend.inc"); -?>
\ No newline at end of file +?> |