bug 921939

This commit is contained in:
Marc Delisle
2004-04-07 19:34:42 +00:00
parent 504d379aaa
commit 313a06cce2
3 changed files with 5 additions and 2 deletions

View File

@@ -12,6 +12,9 @@ $Source$
2004-04-07 Marc Delisle <lem9@users.sourceforge.net> 2004-04-07 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php, bug 931034, big numbers data entry, * tbl_change.php, bug 931034, big numbers data entry,
thanks to Dmitry (yrtimd) thanks to Dmitry (yrtimd)
* tbl_row_delete.php, libraries/display_tbl.lib.php: bug 921939,
problem with multi-row delete and quotes in WHERE clause,
thanks to Ryan Schmidt (ryandesign)
2004-04-06 Marc Delisle <lem9@users.sourceforge.net> 2004-04-06 Marc Delisle <lem9@users.sourceforge.net>
* main.php, complete the fix for bug 922054 * main.php, complete the fix for bug 922054

View File

@@ -1894,7 +1894,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
echo ' <input type="submit" name="submit_mult" value="row_edit" title="' . $GLOBALS['strEdit'] . '" />' . "\n"; echo ' <input type="submit" name="submit_mult" value="row_edit" title="' . $GLOBALS['strEdit'] . '" />' . "\n";
echo '&nbsp;<input type="submit" name="submit_mult" value="row_delete" title="' . $delete_text . '" />' . "\n"; echo '&nbsp;<input type="submit" name="submit_mult" value="row_delete" title="' . $delete_text . '" />' . "\n";
} }
echo '<input type="hidden" name="sql_query" value="' . $sql_query . '" />' . "\n"; echo '<input type="hidden" name="sql_query" value="' . $encoded_sql_query . '" />' . "\n";
echo '<input type="hidden" name="pos" value="' . $pos . '" />' . "\n"; echo '<input type="hidden" name="pos" value="' . $pos . '" />' . "\n";
echo '<input type="hidden" name="url_query" value="' . $GLOBALS['url_query'] . '" />' . "\n"; echo '<input type="hidden" name="url_query" value="' . $GLOBALS['url_query'] . '" />' . "\n";
echo '<br />' . "\n"; echo '<br />' . "\n";

View File

@@ -73,7 +73,7 @@ if (!empty($submit_mult)) {
} }
if (isset($original_sql_query)) { if (isset($original_sql_query)) {
$sql_query = $original_sql_query; $sql_query = urldecode($original_sql_query);
} }
if (isset($original_url_query)) { if (isset($original_url_query)) {