bug 921939
This commit is contained in:
@@ -12,6 +12,9 @@ $Source$
|
||||
2004-04-07 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* tbl_change.php, bug 931034, big numbers data entry,
|
||||
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>
|
||||
* main.php, complete the fix for bug 922054
|
||||
|
@@ -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_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="url_query" value="' . $GLOBALS['url_query'] . '" />' . "\n";
|
||||
echo '<br />' . "\n";
|
||||
|
@@ -73,7 +73,7 @@ if (!empty($submit_mult)) {
|
||||
}
|
||||
|
||||
if (isset($original_sql_query)) {
|
||||
$sql_query = $original_sql_query;
|
||||
$sql_query = urldecode($original_sql_query);
|
||||
}
|
||||
|
||||
if (isset($original_url_query)) {
|
||||
|
Reference in New Issue
Block a user