removed wild chars escaping
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-04-29 Michal Cihar <nijel@users.sourceforge.net>
|
||||
* server_privileges.php3: No need to escape wild characters here.
|
||||
|
||||
2003-04-29 Garvin Hicking <me@supergarv.de>
|
||||
* tbl_move_copy.php3: Bug #729416
|
||||
* tbl_query_box.php3, queryframe.php3: Bug #729446, maybe #728571
|
||||
|
@@ -1201,7 +1201,7 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
echo ' <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
|
||||
. ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
|
||||
while (list(, $current_db) = each($pred_db_array)) {
|
||||
echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_db)) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
|
||||
echo ' <option value="' . htmlspecialchars($current_db) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
|
||||
}
|
||||
echo ' </select>' . "\n";
|
||||
}
|
||||
@@ -1223,7 +1223,7 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
echo ' <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
|
||||
. ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
|
||||
while (list(, $current_table) = each($pred_tbl_array)) {
|
||||
echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_table)) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
|
||||
echo ' <option value="' . htmlspecialchars($current_table) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
|
||||
}
|
||||
echo ' </select>' . "\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user