Merge pull request #15403 from Tithugues/fix/missing-variable-on-insert-page

Fix missing variable on insert page
This commit is contained in:
Maurício Meneghini Fauth 2019-07-26 21:28:04 -03:00 committed by GitHub
commit 657d995567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ if (! defined('PHPMYADMIN')) {
exit;
}
global $cfg, $containerBuilder, $db, $table, $text_dir;
global $cfg, $is_upload, $containerBuilder, $db, $table, $text_dir;
/** @var Response $response */
$response = $containerBuilder->get(Response::class);