|
From: Benjamin C. <bc...@us...> - 2002-04-03 19:08:57
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory usw-pr-cvs1:/tmp/cvs-serv28324/inc/db Modified Files: mysql.php oci8.php pgsql.php Log Message: Oracle tweaks Index: mysql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/mysql.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- mysql.php 3 Apr 2002 01:01:04 -0000 1.3 +++ mysql.php 3 Apr 2002 19:08:48 -0000 1.4 @@ -140,7 +140,7 @@ 'from '.TBL_BUG. ' b '. 'left join '.TBL_AUTH_USER.' u on assigned_to = user_id %s '. 'group by assigned_to, u.email', - 'report-resbyeng-where' => 'where', + 'join-where' => 'where', ); ?> Index: oci8.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/oci8.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- oci8.php 3 Apr 2002 01:01:04 -0000 1.2 +++ oci8.php 3 Apr 2002 19:08:48 -0000 1.3 @@ -144,7 +144,7 @@ 'from '.TBL_BUG . ' b, '.TBL_AUTH_USER.' u '. 'where b.assigned_to = u.user_id(+) %s '. 'group by assigned_to, u.email', - 'report-resbyeng-where' => 'and', + 'join-where' => 'and', ); ?> Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- pgsql.php 3 Apr 2002 01:01:04 -0000 1.4 +++ pgsql.php 3 Apr 2002 19:08:48 -0000 1.5 @@ -140,7 +140,7 @@ 'from '.TBL_BUG. ' b '. 'left join '.TBL_AUTH_USER.' u on assigned_to = user_id %s '. 'group by assigned_to, u.email', - 'report-resbyeng-where' => 'where', + 'join-where' => 'where', ); ?> |