Do not use htmlspecialchars in generating SQL (bug#3287048).

This commit is contained in:
Michal Čihař
2011-04-15 08:55:27 +02:00
parent b1146ee73f
commit 61a87263e7

View File

@@ -339,7 +339,7 @@ elseif ($mult_btn == __('Yes')) {
case 'empty_tbl':
$a_query = 'TRUNCATE ';
$a_query .= PMA_backquote(htmlspecialchars($selected[$i]));
$a_query .= PMA_backquote($selected[$i]);
$run_parts = TRUE;
break;