Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-06-01 20:22:30 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-06-01 20:22:30 +0400
commit10510e16b4973f096b0ca05217dda8701f60da7c (patch)
tree000314395d9070672216078d22fdeb3b5e9b79cb /tbl_tracking.php
parent381ae7b85a87e98c296aa4044c12ad8766e8b4c9 (diff)
Fix function name: PMA_download_header -> PMA_downloadHeader
Diffstat (limited to 'tbl_tracking.php')
-rw-r--r--tbl_tracking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_tracking.php b/tbl_tracking.php
index b8b92f48c4..eb9d760bd8 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -135,7 +135,7 @@ if (isset($_REQUEST['report_export']) && $_REQUEST['export_type'] == 'sqldumpfil
$dump .= $entry['statement'];
}
$filename = 'log_' . htmlspecialchars($_REQUEST['table']) . '.sql';
- PMA_download_header($filename, 'text/x-sql', strlen($dump));
+ PMA_downloadHeader($filename, 'text/x-sql', strlen($dump));
echo $dump;
exit();