mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 17:14:07 +02:00
Disable SQL export when applying functions in select
This commit is contained in:
@@ -472,6 +472,12 @@ if (!$columns) {
|
||||
<?php
|
||||
}
|
||||
$format = $adminer->dumpFormat();
|
||||
foreach ((array) $_GET["columns"] as $column) {
|
||||
if ($column["fun"]) {
|
||||
unset($format['sql']);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if ($format) {
|
||||
print_fieldset("export", lang('Export'));
|
||||
$output = $adminer->dumpOutput();
|
||||
|
@@ -1,5 +1,6 @@
|
||||
Adminer 3.6.5-dev:
|
||||
Print run time next to executed queries
|
||||
Disable SQL export when applying functions in select
|
||||
Fix handling of POINT data type (bug #3582578)
|
||||
Don't export binary and geometry columns twice in select
|
||||
|
||||
|
Reference in New Issue
Block a user