what is this htmlspecialchars() for?

This commit is contained in:
Sebastian Mendel
2007-09-27 15:34:11 +00:00
parent caf61599cf
commit 6e8a1f0124

View File

@@ -110,7 +110,10 @@ if (! empty($submit_mult)
$sql_query .= ', ' . PMA_backquote(urldecode($sval));
}
}
$sql_query .= ' FROM ' . PMA_backquote(htmlspecialchars($table));
// what is this htmlspecialchars() for??
//$sql_query .= ' FROM ' . PMA_backquote(htmlspecialchars($table));
$sql_query .= ' FROM ' . PMA_backquote($table);
require './sql.php';
break;
}