diff options
author | thomascube <thomas@roundcube.net> | 2006-09-07 18:54:37 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-09-07 18:54:37 +0000 |
commit | e170b4b7f85767703293116c95d9e02020b1c99a (patch) | |
tree | b9b708c37c1016709fcb3314039d2137c99e26f4 /program/steps/error.inc | |
parent | d656f1ca71de0ec88da9ac84987bdeb44e371ccf (diff) |
Some bugfixes and session expiration stuff
Diffstat (limited to 'program/steps/error.inc')
-rw-r--r-- | program/steps/error.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/error.inc b/program/steps/error.inc index 2d87a9da4..f616ba1bf 100644 --- a/program/steps/error.inc +++ b/program/steps/error.inc @@ -69,11 +69,11 @@ else { $__error_title = "SERVICE CURRENTLY NOT AVAILABLE!"; $__error_text = "Please contact your server-administrator."; - + if (($CONFIG['debug_level'] & 4) && $ERROR_MESSAGE) $__error_text = $ERROR_MESSAGE; else - $__error_text = 'Error No. '.dechex($ERROR_CODE).')'; + $__error_text = 'Error No. ['.dechex($ERROR_CODE).']'; } |