bug 899610

This commit is contained in:
Marc Delisle
2004-02-18 16:19:49 +00:00
parent 6279474b3a
commit 2526d8ae79
2 changed files with 5 additions and 4 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-02-18 Marc Delisle <lem9@users.sourceforge.net>
* export.php: bug 899610, undefined variable $save_filename
2004-02-15 Alexander M. Turek <onehotminute@derrabus.de>
* libraries/select_lang.lib.php: Deactivated the code part that disables
the UTF-8 language files if $cfg['AllowAnywhereRecoding'] is set to FALSE

View File

@@ -18,9 +18,7 @@ if ($what == 'excel') {
$type = $what;
}
/**
* Defines the url to return to in case of error in a sql statement
*/
// Get the functions specific to the export type
require('./libraries/export/' . preg_replace('@\.\.*@','.',$type) . '.php');
// Generate error url
@@ -55,7 +53,7 @@ $time_start = time();
*/
function PMA_exportOutputHandler($line)
{
global $time_start, $dump_buffer, $dump_buffer_len;
global $time_start, $dump_buffer, $dump_buffer_len, $save_filename;
// Kanji encoding convert feature
if (function_exists('PMA_kanji_str_conv')) {