This commit is contained in:
Garvin Hicking
2003-04-02 20:42:48 +00:00
parent 7e910a789e
commit 0dbcd43481
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ $Id$
$Source$
2003-04-02 Garvin Hicking <me@supergarv.de>
* tbl_query_box.php3: RFE #714095. Use backquotes for inserted fields.
* tbl_move_copy.php3: At least one of the PDF integrity checks
on moving/copying a table can safely be enabled.
* tbl_move_copy.php3, tbl_properties_operations.php3: Made 'move to

View File

@@ -102,7 +102,7 @@ if (!isset($is_inside_querywindow) ||
echo "\n";
for ($i = 0 ; $i < $fields_cnt; $i++) {
echo ' '
. '<option value="' . htmlspecialchars($fields_list[$i]) . '">' . htmlspecialchars($fields_list[$i]) . '</option>' . "\n";
. '<option value="' . PMA_backquote(htmlspecialchars($fields_list[$i])) . '">' . htmlspecialchars($fields_list[$i]) . '</option>' . "\n";
}
?>
</select>