bug 830437
This commit is contained in:
@@ -5,6 +5,8 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-10-26 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* libraries/display_tbl.lib.php3: bug 830437, undefined $sql_order
|
||||||
|
|
||||||
2003-10-24 Michal Cihar <nijel@users.sourceforge.net>
|
2003-10-24 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* lang/lithuanian: Updated, thanks to Vilius Zigmantas (viliusz).
|
* lang/lithuanian: Updated, thanks to Vilius Zigmantas (viliusz).
|
||||||
|
@@ -544,7 +544,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
|
|||||||
echo '<input type="hidden" name="dontlimitchars" value="' . $dontlimitchars . '" />' . "\n";
|
echo '<input type="hidden" name="dontlimitchars" value="' . $dontlimitchars . '" />' . "\n";
|
||||||
echo $GLOBALS['strSortByKey'] . ': <select name="sql_query"> ';
|
echo $GLOBALS['strSortByKey'] . ': <select name="sql_query"> ';
|
||||||
$used_index = false;
|
$used_index = false;
|
||||||
$local_order = str_replace(' ', ' ', $sql_order);
|
$local_order = (isset($sql_order) ? str_replace(' ', ' ', $sql_order) : '');
|
||||||
while (list($key, $val) = each($indexes_data)) {
|
while (list($key, $val) = each($indexes_data)) {
|
||||||
$asc_sort = 'ORDER BY ';
|
$asc_sort = 'ORDER BY ';
|
||||||
$desc_sort = 'ORDER BY ';
|
$desc_sort = 'ORDER BY ';
|
||||||
|
Reference in New Issue
Block a user