problem with accented table names
This commit is contained in:
@@ -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
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user