Update of /cvsroot/phpbt/phpbt/inc/db
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30027/inc/db
Modified Files:
mssql.php mysql.php mysqli.php oci8.php pgsql.php
Log Message:
RFE #815120 -- Replace Created Date with Owner in Component
Index: mssql.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/mssql.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mssql.php 2 Oct 2005 20:47:59 -0000 1.6
+++ mssql.php 2 Oct 2005 20:50:11 -0000 1.7
@@ -8,6 +8,7 @@
'c.component_id, '.
'c.component_name, '.
'c.created_date, '.
+ 'c.owner, '.
'c.active, '.
'sort_order, '.
'count(bug_id) as bug_count '.
Index: mysql.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/mysql.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- mysql.php 2 Oct 2005 20:47:59 -0000 1.29
+++ mysql.php 2 Oct 2005 20:50:11 -0000 1.30
@@ -8,6 +8,7 @@
'c.component_id, '.
'component_name, '.
'c.created_date, '.
+ 'owner, '.
'active, '.
'sort_order, '.
'count(bug_id) as bug_count '.
Index: mysqli.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/mysqli.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mysqli.php 2 Oct 2005 20:47:59 -0000 1.3
+++ mysqli.php 2 Oct 2005 20:50:11 -0000 1.4
@@ -8,6 +8,7 @@
'c.component_id, '.
'component_name, '.
'c.created_date, '.
+ 'owner, '.
'active, '.
'sort_order, '.
'count(bug_id) as bug_count '.
Index: oci8.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/oci8.php,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- oci8.php 2 Oct 2005 20:47:59 -0000 1.22
+++ oci8.php 2 Oct 2005 20:50:11 -0000 1.23
@@ -8,6 +8,7 @@
'c.component_id, '.
'component_name, '.
'c.created_date, '.
+ 'owner, '.
'active, '.
'sort_order, '.
'count(bug_id) as bug_count '.
Index: pgsql.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- pgsql.php 2 Oct 2005 20:47:59 -0000 1.30
+++ pgsql.php 2 Oct 2005 20:50:11 -0000 1.31
@@ -8,6 +8,7 @@
'c.component_id, '.
'c.component_name, '.
'c.created_date, '.
+ 'c.owner, '.
'c.active, '.
'c.sort_order, '.
'count(bug_id) as bug_count '.
|