fixed stupid bug to get multi row feature to work again. Mea maxima culpa.

This commit is contained in:
Garvin Hicking
2004-05-03 08:13:17 +00:00
parent dfe8033eb6
commit e6993ccfce
2 changed files with 10 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-05-03 Garvin Hicking <pma@supergarv.de>
* tbl_row_delete.php: Multi Row edit/delete: Fixed wrong switch
structure to take previous settings into account.
2004-05-02 Michal Cihar <michal@cihar.com>
* tbl_change.php: Unclosed tag written by javascript (bug #945905).

View File

@@ -25,6 +25,12 @@ if (isset($mult_btn)) {
}
switch($submit_mult) {
case 'row_delete':
case 'row_edit':
case 'row_export':
// leave as is
break;
case $GLOBALS['strExport']:
$submit_mult = 'row_export';
break;