We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84b98d commit e094f34Copy full SHA for e094f34
tbl_create.php
@@ -287,7 +287,9 @@
287
$new_table_string .= '<td align="center"> <input type="checkbox" id="checkbox_tbl_" name="selected_tbl[]" value="'.htmlspecialchars($table).'" /> </td>' . "\n";
288
289
$new_table_string .= '<th>';
290
- $new_table_string .= '<a href="sql.php' . PMA_generate_common_url($tbl_url_params) . '">'. $table . '</a>';
+ $new_table_string .= '<a href="sql.php'
291
+ . PMA_generate_common_url($tbl_url_params) . '">'
292
+ . htmlspecialchars($table) . '</a>';
293
294
if (PMA_Tracker::isActive()) {
295
$truename = str_replace(' ', ' ', htmlspecialchars($table));
0 commit comments