summaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-09-22 15:05:04 +0200
committerneoraider <devnull@localhost>2006-09-22 15:05:04 +0200
commitc8ef6f06beafe500b85cdb252477217d9e017114 (patch)
tree1a0c823073810509ad020c7d5716f06e48a2f399 /code
parentd02a8a4f7f23bd63b8d541e3f4290b72c4e15ec0 (diff)
downloadneon-c8ef6f06beafe500b85cdb252477217d9e017114.tar
neon-c8ef6f06beafe500b85cdb252477217d9e017114.zip
Bugfix in messages.inc.php;
Provisorischen base-Seitentyp hinzugef?gt.
Diffstat (limited to 'code')
-rw-r--r--code/message.inc.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/code/message.inc.php b/code/message.inc.php
index 8545a01..fb9e8fa 100644
--- a/code/message.inc.php
+++ b/code/message.inc.php
@@ -1,11 +1,11 @@
<?PHP
Uses('util');
- $message['Error'] = 'Error';
- $message['PageNotFound'] = 'The page \'$page\' does not exist.';
- $message['Forbidden'] = 'The page \'$page\' is protected.';
- $message['InternalError'] = 'An internal error has occourred.';
- $message['LoginError'] = 'Login failed. Username or password is wrong.';
+ $GLOBALS['message']['Error'] = 'Error';
+ $GLOBALS['message']['PageNotFound'] = 'The page \'$page\' does not exist.';
+ $GLOBALS['message']['Forbidden'] = 'The page \'$page\' is protected.';
+ $GLOBALS['message']['InternalError'] = 'An internal error has occourred.';
+ $GLOBALS['message']['LoginError'] = 'Login failed. Username or password is wrong.';
if($config['language'] != 'en') @include('lang/' . $config['language'] . '.inc.php');