|
From: Benjamin C. <bc...@us...> - 2005-01-22 16:09:39
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29529 Modified Files: query.php Log Message: Fixes bug #1104354 - Sorting was causing some problems on the bug view Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.99 retrieving revision 1.100 diff -u -r1.99 -r1.100 --- query.php 25 Oct 2004 12:06:58 -0000 1.99 +++ query.php 22 Jan 2005 16:09:30 -0000 1.100 @@ -327,7 +327,7 @@ if (!in_array($sort, array('asc', 'desc'))) $sort = 'asc'; if (empty($_SESSION['queryinfo'])) $_SESSION['queryinfo'] = array(); - $_SESSION['queryinfo']['order'] = $order; + $_SESSION['queryinfo']['order'] = $db_headers[$order];; $_SESSION['queryinfo']['sort'] = $sort; if (empty($_SESSION['queryinfo']['query']) or isset($op)) { |