Return back to browsing after editing row.

This commit is contained in:
Michal Čihař
2004-05-31 09:59:35 +00:00
parent 929b6311aa
commit 1db58c765b
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-05-30 Michal Čihař <michal@cihar.com>
* libraries/display_tbl.lib.php: Return back to browsing after editing
row.
2004-05-29 Marc Delisle <lem9@users.sourceforge.net>
* sql.php: bug #956828, deleting last row gives an error. I could not
find a case where we need the line I just removed, which was

View File

@@ -582,7 +582,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
echo PMA_generate_common_hidden_inputs($db, $table, 1);
echo '<input type="hidden" name="disp_direction" value="' . $disp_direction . '" />' . "\n";
echo '<input type="hidden" name="repeat_cells" value="' . $repeat_cells . '" />' . "\n";
echo '<input type="hidden" name="goto" value="' . $goto . '" />' . "\n";
echo '<input type="hidden" name="goto" value="sql.php" />' . "\n";
echo '<input type="hidden" name="dontlimitchars" value="' . $dontlimitchars . '" />' . "\n";
}