#12994 fixed message error in ajax when historical database is down
This commit is contained in:
parent
1125f64e89
commit
c269d4280a
|
@ -117,7 +117,10 @@ function mysql_connect_db(
|
|||
}
|
||||
|
||||
if (mysqli_connect_errno() > 0) {
|
||||
include 'general/mysqlerr.php';
|
||||
if ($history === false) {
|
||||
include 'general/mysqlerr.php';
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -147,9 +147,11 @@ function db_connect(
|
|||
// Display the error once even if multiple
|
||||
// connection attempts are made.
|
||||
$error = 1;
|
||||
ui_print_error_message(
|
||||
__('Error connecting to database %s at %s.', $db, $host)
|
||||
);
|
||||
if ($history === false) {
|
||||
ui_print_error_message(
|
||||
__('Error connecting to database %s at %s.', $db, $host)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue