change _newwin to _blank because the window named _newwin may be hard to find if you have lots of windows/tabs open.

This commit is contained in:
redmatrix
2015-11-20 12:49:38 -08:00
parent 7b459ec355
commit 37368bda65
4 changed files with 21 additions and 23 deletions

View File

@@ -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);