Declare globals in database/qbe.php entry point

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2019-08-25 15:51:04 -03:00
parent 88f3fe301c
commit c3bead5b9d

View File

@ -22,7 +22,9 @@ if (! defined('PHPMYADMIN')) {
exit;
}
global $containerBuilder, $db, $pmaThemeImage, $url_query;
global $containerBuilder, $db, $pmaThemeImage, $url_query, $savedSearchList, $savedSearch, $currentSearchId;
global $message_to_display, $sql_query, $goto, $sub_part, $tables, $num_tables, $total_num_tables;
global $is_show_stats, $db_is_system_schema, $tooltip_truename, $tooltip_aliasname, $pos, $url_params;
/** @var Response $response */
$response = $containerBuilder->get(Response::class);