Downloaded file name

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@665 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-06-11 05:18:40 +00:00
parent 017ffb51fc
commit 82518960e9
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,4 @@
<?php
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=" . friendly_url("$_GET[download]-" . implode("_", $_GET["where"])) . "." . friendly_url($_GET["field"]));
echo $dbh->result($dbh->query("SELECT " . idf_escape($_GET["field"]) . " FROM " . idf_escape($_GET["download"]) . " WHERE " . implode(" AND ", where($_GET)) . " LIMIT 1"));

View file

@ -164,7 +164,7 @@ function dump_data($table, $style, $from = "") {
}
function dump_headers($identifier, $multi_table = false) {
$filename = (strlen($identifier) ? preg_replace('~[^a-z0-9_]~i', '-', $identifier) : "dump");
$filename = (strlen($identifier) ? friendly_url($identifier) : "dump");
$ext = ($_POST["format"] == "sql" ? "sql" : ($multi_table ? "tar" : "csv"));
header("Content-Type: " . ($ext == "tar" ? "application/x-tar" : ($ext == "sql" || $_POST["output"] != "file" ? "text/plain" : "text/csv")) . "; charset=utf-8");
header("Content-Disposition: " . ($_POST["output"] == "file" ? "attachment" : "inline") . "; filename=$filename.$ext");

View file

@ -200,7 +200,7 @@ function select($result, $dbh2 = null) {
$val = "<i>NULL</i>";
} else {
if ($blobs[$key] && !is_utf8($val)) {
$val = "<i>" . lang('%d byte(s)', strlen($val)) . "</i>";
$val = "<i>" . lang('%d byte(s)', strlen($val)) . "</i>"; //! link to download
} else {
$val = nl2br(htmlspecialchars($val));
if ($types[$key] == 254) {
@ -233,6 +233,10 @@ function shorten_utf8($string, $length) {
return nl2br(htmlspecialchars($match[1])) . ($match[2] ? "<em>...</em>" : "");
}
function friendly_url($val) {
return preg_replace('~[^a-z0-9_]~i', '-', $val);
}
function hidden_fields($process, $ignore = array()) {
while (list($key, $val) = each($process)) {
if (is_array($val)) {