diff options
| author | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-27 10:13:10 +0000 |
|---|---|---|
| committer | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-27 10:13:10 +0000 |
| commit | 30f41a29674bd5929992ff3e8526e5a498b6261f (patch) | |
| tree | 0b6d48e21a92a00f3662f3e435910645549cd8e3 | |
| parent | 673c9d98e0a92e9f04d33b57eaf28f80b95a6815 (diff) | |
Specify database error in error.inc (closes #1484189).
git-svn-id: https://svn.roundcube.net/trunk@435 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/error.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/error.inc b/roundcubemail/program/steps/error.inc index 8ba39d3b7..2eb50eb7b 100644 --- a/roundcubemail/program/steps/error.inc +++ b/roundcubemail/program/steps/error.inc @@ -63,6 +63,15 @@ http://$request_url</p> EOF; } +// database connection error +else if ($ERROR_CODE==0x01f4) + { + $__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 |
