|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:05:38
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13944/inc/db Modified Files: Tag: htmltemplates pgsql.php Log Message: Fixes bug #1012899 - Query bug Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.24.4.1 retrieving revision 1.24.4.2 diff -u -r1.24.4.1 -r1.24.4.2 --- pgsql.php 25 Feb 2004 12:47:48 -0000 1.24.4.1 +++ pgsql.php 23 Aug 2004 13:05:21 -0000 1.24.4.2 @@ -6,7 +6,7 @@ 'from '.TBL_AUTH_GROUP.' ag '. 'left join '.TBL_USER_GROUP.' ug using (group_id) '. 'left join '.TBL_AUTH_USER.' using (user_id) '. - 'group by ag.group_id, group_name, locked '. + 'group by ag.group_id, group_name, locked, assignable '. 'order by %s %s', 'admin-list-oses' => 'select s.os_id, os_name, regex, sort_order, '. 'count(bug_id) as bug_count '. |