bug 782925

This commit is contained in:
Marc Delisle
2003-08-06 18:39:08 +00:00
parent 481b072e5f
commit ef4318fe24
2 changed files with 7 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-08-06 Marc Delisle <lem9@users.sourceforge.net>
* sql.php3: bug 782925: fix "Showing rows..." message when user has
put a LIMIT in the query
2003-08-06 Michal Cihar <nijel@users.sourceforge.net>
* libraries/common.lib.php3: Parse better enum fields (bug #784154).

View File

@@ -364,6 +364,9 @@ else {
if (empty($sql_limit_to_append)) {
$unlim_num_rows = $num_rows;
// if we did not append a limit, set this to get a correct
// "Showing rows..." message
$GLOBALS['session_max_rows'] = 'all';
}
else if ($is_select) {