From 033b9675058690389876c2f75afe99c9a38fb766 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 15 Jun 2014 12:06:01 +0200 Subject: [PATCH] Clarify that global import supports only SQL --- adminer/sql.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/adminer/sql.inc.php b/adminer/sql.inc.php index 1158ceaa..7f2e4695 100644 --- a/adminer/sql.inc.php +++ b/adminer/sql.inc.php @@ -203,10 +203,9 @@ if (!isset($_GET["import"])) { } else { echo "
" . lang('File upload') . "
"; echo (ini_bool("file_uploads") - ? ' (< ' . ini_get("upload_max_filesize") . 'B)' // ignore post_max_size because it is for all form fields together and bytes computing would be necessary + ? "SQL (< " . ini_get("upload_max_filesize") . "B): \n$execute" // ignore post_max_size because it is for all form fields together and bytes computing would be necessary : lang('File uploads are disabled.') ); - echo "\n$execute"; echo "
\n"; echo "
" . lang('From server') . "
"; echo lang('Webserver file %s', "adminer.sql" . (extension_loaded("zlib") ? "[.gz]" : "") . "");