bug 826847 undefined url_query

This commit is contained in:
Marc Delisle
2003-10-21 16:42:37 +00:00
parent 857fc70f7d
commit eaf3bfbad4
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2003-10-21 Marc Delisle <lem9@users.sourceforge.net>
* pdf_pages.php3: Patch 825672: show fields in Edit PDF scratchboard,
thanks to Chris Walsh (chriswalshaz)
* libraries/display_tbl.lib.php3: bug 826847, undefined $url_query
2003-10-20 Michal Cihar <nijel@users.sourceforge.net>
* Documentation, config.inc.php3, tbl_change.php3,

View File

@@ -1474,7 +1474,10 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
echo (($disp_direction == 'horizontal' || $disp_direction == 'horizontalflipped') ? "\n" : '');
$row_no++;
} // end while
$GLOBALS['url_query'] = $url_query;
if (isset($url_query)) {
$GLOBALS['url_query'] = $url_query;
}
return TRUE;
} // end of the 'PMA_displayTableBody()' function