diff --git a/ChangeLog b/ChangeLog index dbacb8e5a..c70c81668 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-02-12 Marc Delisle + * tbl_printview.php3, missing urldecode, layout improvement, + thanks to Marcus Börger (helly) + 2002-02-11 Marc Delisle * sql.php3: $table was emptied when the query was not a Select * lang/norwegian.inc.php3 updates thanks to Sven-Erik Andersen diff --git a/tbl_printview.php3 b/tbl_printview.php3 index ef4129485..967e1616f 100755 --- a/tbl_printview.php3 +++ b/tbl_printview.php3 @@ -49,17 +49,19 @@ if ($multi_tables) { $tbl_list = ''; while (list($key, $table) = each($the_tables)) { $tbl_list .= (empty($tbl_list) ? '' : ', ') - . PMA_backquote($table); + . PMA_backquote(urldecode($table)); } echo ''. $strShowTables . ' : ' . $tbl_list . '' . "\n"; + echo '
' . "\n"; } // end if reset($the_tables); while (list($key, $table) = each($the_tables)) { - if ($multi_tables) { + $table = urldecode($table); +// if ($multi_tables) { echo '
' . "\n"; echo '

' . $table . '

' . "\n"; - } // end if +// } // end if /** * Gets table informations