RFE #714095
This commit is contained in:
@@ -6,6 +6,7 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2003-04-02 Garvin Hicking <me@supergarv.de>
|
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
|
* tbl_move_copy.php3: At least one of the PDF integrity checks
|
||||||
on moving/copying a table can safely be enabled.
|
on moving/copying a table can safely be enabled.
|
||||||
* tbl_move_copy.php3, tbl_properties_operations.php3: Made 'move to
|
* tbl_move_copy.php3, tbl_properties_operations.php3: Made 'move to
|
||||||
|
@@ -102,7 +102,7 @@ if (!isset($is_inside_querywindow) ||
|
|||||||
echo "\n";
|
echo "\n";
|
||||||
for ($i = 0 ; $i < $fields_cnt; $i++) {
|
for ($i = 0 ; $i < $fields_cnt; $i++) {
|
||||||
echo ' '
|
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>
|
</select>
|
||||||
|
Reference in New Issue
Block a user