diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-11-20 12:49:38 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-11-20 12:49:38 -0800 |
commit | 37368bda6591ccd0b69775c35599d6696f712c27 (patch) | |
tree | 50764efeccf4167710874ee33ff8c0de00fe8029 /index.php | |
parent | 7b459ec3558107a2f8ae685cd4ce847f74f821e6 (diff) | |
download | volse-hubzilla-37368bda6591ccd0b69775c35599d6696f712c27.tar.gz volse-hubzilla-37368bda6591ccd0b69775c35599d6696f712c27.tar.bz2 volse-hubzilla-37368bda6591ccd0b69775c35599d6696f712c27.zip |
change _newwin to _blank because the window named _newwin may be hard to find if you have lots of windows/tabs open.
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -36,10 +36,8 @@ require_once('include/dba/dba_driver.php'); if(! $a->install) { $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, $a->install); - if(! $db->connected){ - header('HTTP/1.0 520 Unknown Error'); - // TODO: much friendlier error message - die("Database error, contact admin."); + if(! $db->connected) { + system_unavailable(); } unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); |