bug 442337

This commit is contained in:
Marc Delisle
2001-07-18 17:11:47 +00:00
parent 0fc7bd09ff
commit ba028edffe
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-07-18 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php3, bug 442337: a bad line split was adding a blank
in front of the $sql_query, so a check for ^SELECT would not work
and LIMIT was not added to the query
2001-07-18 Olivier M<>ller <om@omnis.ch>
* set current version number to 2.2.0rc3 (which should become 2.2.0-final)
* tbl_change.php3: feature #442402: while editing a record, the function

View File

@@ -28,8 +28,7 @@ else
<input type="hidden" name="db" value="<?php echo $db;?>">
<input type="hidden" name="table" value="<?php echo $table;?>">
<input type="hidden" name="goto" value="<?php echo $goto;?>">
<input type="hidden" name="sql_query" value="
<?php echo isset($sql_query) ? urlencode(stripslashes($sql_query)) : "";?>">
<input type="hidden" name="sql_query" value="<?php echo isset($sql_query) ? urlencode(stripslashes($sql_query)) : "";?>">
<input type="hidden" name="pos" value="<?php echo isset($pos) ? $pos : 0;?>">
<?php