problem with accented table names

This commit is contained in:
Marc Delisle
2005-12-17 13:48:24 +00:00
parent 2d4969615a
commit d1b9d33269
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-12-17 Marc Delisle <lem9@users.sourceforge.net>
* libraries/url_generating.lib.php: problem with accented table names
2005-12-16 Michal Čihař <michal@cihar.com>
* Documentation.html, libraries/common.lib.php,
libraries/config.default.php, libraries/database_interface.lib.php: Add

View File

@@ -76,7 +76,7 @@ function PMA_generate_common_hidden_inputs( $db = '', $table = '', $indent = 0,
$return = '';
foreach( $params as $key => $val ) {
$return .= $spaces . '<input type="hidden" name="' . htmlentities( $key ) . '" value="' . htmlentities( $val ) . '" />' . "\n";
$return .= $spaces . '<input type="hidden" name="' . htmlspecialchars( $key ) . '" value="' . htmlspecialchars( $val ) . '" />' . "\n";
}
return $return;