alecpl
2008-04-11 eaa39477bd53130e68bfb26d63308cc9b6af9369
program/steps/error.inc
@@ -5,7 +5,7 @@
 | program/steps/error.inc                                               |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 | PURPOSE:                                                              |
@@ -63,6 +63,15 @@
EOF;
  }
// database connection error
else if ($ERROR_CODE==603)
  {
  $__error_title = "DATABASE ERROR: CONNECTION FAILED!";
  $__error_text  =  <<<EOF
Unable to connect to the database!<br />
Please contact your server-administrator.
EOF;
  }
// system error
else
@@ -73,7 +82,7 @@
  if (($CONFIG['debug_level'] & 4) && $ERROR_MESSAGE)
    $__error_text = $ERROR_MESSAGE;
  else
    $__error_text = 'Error No. ['.dechex($ERROR_CODE).']';
    $__error_text = sprintf('Error No. [0x%04X]', $ERROR_CODE);
  }
@@ -115,4 +124,4 @@
</html>
EOF;
?>
?>