|
From: Jirka P. <fi...@us...> - 2002-04-13 12:32:23
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv8480/phpbt Modified Files: query.php Log Message: Fixed error when enabling date fields (bug 543243). There were created_date and last_modified_date columns in two tables in the same select query and there were not uniquely identied. Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- query.php 12 Apr 2002 00:32:12 -0000 1.70 +++ query.php 13 Apr 2002 12:32:17 -0000 1.71 @@ -178,9 +178,9 @@ 'resolution_name' => 'resolution_name', 'reporter' => 'reporter.login as reporter', 'owner' => 'owner.login as owner', - 'created_date' => 'created_date Date', + 'created_date' => 'b.created_date', 'lastmodifier' => 'lastmodifier.login as lastmodifier', - 'last_modified_date' => 'last_modified_date', + 'last_modified_date' => 'b.last_modified_date', 'project_name' => 'project.project_name', 'version_name' => 'version.version_name', 'component_name' => 'component.component_name', |