fixed bug fixed bug #472728 - select records and many fields / IE 5.5 or IE 6

This commit is contained in:
Loïc Chapeaux
2001-12-23 13:24:04 +00:00
parent c9421d3583
commit e58c390ce1
2 changed files with 12 additions and 11 deletions

View File

@@ -5,10 +5,14 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-12-23 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_select.php3, lines 202-206: fixed bug #472728 - Many fields / IE 5.5
or IE 6.
2001-12-22 Marc Delisle <lem9@users.sourceforge.net> 2001-12-22 Marc Delisle <lem9@users.sourceforge.net>
* start new MySQL short documentation structure: * start new MySQL short documentation structure:
- config.inc.php3 $cfgManualBaseShort - config.inc.php3 $cfgManualBaseShort
- libraries/common.lib.php3 PMA_showDocuShort() - libraries/common.lib.php3 PMA_showDocuShort()
2001-12-21 Marc Delisle <lem9@users.sourceforge.net> 2001-12-21 Marc Delisle <lem9@users.sourceforge.net>
* test and merge patch from Lo<4C>c for bug 495112: * test and merge patch from Lo<4C>c for bug 495112:

View File

@@ -199,15 +199,12 @@ else {
$sql_query .= ' ORDER BY ' . PMA_backquote(urldecode($orderField)) . ' ' . $order; $sql_query .= ' ORDER BY ' . PMA_backquote(urldecode($orderField)) . ' ' . $order;
} // end if } // end if
$url_query = 'lang=' . $lang // The query will be stripslashed in sql.php3 if "magic_quotes_gpc" is on
. '&server=' . $server if (get_magic_quotes_gpc()) {
. '&db=' . urlencode($db) $sql_query = addslashes($sql_query);
. '&table=' . urlencode($table) }
. '&sql_query=' . urlencode($sql_query) include('./sql.php3');
. '&pos=0'
. '&session_max_rows=' . $session_max_rows
. '&goto='. $goto;
header('Location: ' . $cfgPmaAbsoluteUri . 'sql.php3?' . $url_query);
} }
?> ?>