avoid trying to connect to server if server name is empty or zero
This commit is contained in:
parent
79fd8b415a
commit
814b68c284
|
@ -5140,7 +5140,7 @@ function reporting_sql($report, $content)
|
||||||
$return['description'] = $content['description'];
|
$return['description'] = $content['description'];
|
||||||
$return['date'] = reporting_get_date_text();
|
$return['date'] = reporting_get_date_text();
|
||||||
|
|
||||||
if ($config['metaconsole']) {
|
if ($config['metaconsole'] && !empty($content['server_name'])) {
|
||||||
$id_meta = metaconsole_get_id_server(
|
$id_meta = metaconsole_get_id_server(
|
||||||
$content['server_name']
|
$content['server_name']
|
||||||
);
|
);
|
||||||
|
@ -5212,7 +5212,7 @@ function reporting_sql($report, $content)
|
||||||
$return['error'] = __('Illegal query: Due security restrictions, there are some tokens or words you cannot use: *, delete, drop, alter, modify, password, pass, insert or update.');
|
$return['error'] = __('Illegal query: Due security restrictions, there are some tokens or words you cannot use: *, delete, drop, alter, modify, password, pass, insert or update.');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['metaconsole']) {
|
if ($config['metaconsole'] && !empty($content['server_name'])) {
|
||||||
metaconsole_restore_db();
|
metaconsole_restore_db();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue