1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-09 08:06:59 +02:00

Customizable export filename

This commit is contained in:
Jakub Vrana
2012-06-29 12:25:05 -07:00
parent 0d5543c9ac
commit 5b57706890
4 changed files with 5 additions and 4 deletions

View File

@@ -803,10 +803,6 @@ function search_tables() {
function dump_headers($identifier, $multi_table = false) {
global $adminer;
$return = $adminer->dumpHeaders($identifier, $multi_table);
$output = $_POST["output"];
if ($output != "text") {
header("Content-Disposition: attachment; filename=" . friendly_url($identifier != "" ? $identifier : (SERVER != "" ? SERVER : "localhost")) . ".$return" . ($output != "file" && !ereg('[^0-9a-z]', $output) ? ".$output" : ""));
}
session_write_close();
return $return;
}