|
From: Benjamin C. <bc...@us...> - 2002-05-08 12:59:15
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv31758 Modified Files: query.php Log Message: Fixes bug #545546 - Non-unique column names in the order by clause Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.71 retrieving revision 1.72 diff -u -r1.71 -r1.72 --- query.php 13 Apr 2002 12:32:17 -0000 1.71 +++ query.php 8 May 2002 12:59:13 -0000 1.72 @@ -200,8 +200,8 @@ 'owner' => 'owner', 'reporter' => 'reporter', 'lastmodifier' => 'last_modifier', - 'created_date' => 'created_date', - 'last_modified_date' => 'last_modified_date', + 'created_date' => 'b.created_date', + 'last_modified_date' => 'b.last_modified_date', 'project_name' => 'project_name', 'component_name' => 'component_name', 'version_name' => 'version_name', |