gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/common/tracker ArtifactType.class, 1.29, 1.30


From: gsmet
Subject: [Gforge-commits] gforge/common/tracker ArtifactType.class, 1.29, 1.30
Date: Tue, 02 Nov 2004 18:16:26 -0600

Update of /cvsroot/gforge/gforge/common/tracker
In directory db.perdue.net:/tmp/cvs-serv11193/common/tracker

Modified Files:
        ArtifactType.class 
Log Message:
fixed references


Index: ArtifactType.class
===================================================================
RCS file: /cvsroot/gforge/gforge/common/tracker/ArtifactType.class,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- ArtifactType.class  25 Oct 2004 00:58:09 -0000      1.29
+++ ArtifactType.class  3 Nov 2004 00:16:23 -0000       1.30
@@ -626,7 +626,7 @@
        function &getCategoryObjects() {
                $res = $this->getCategories();
                while ($arr =& db_fetch_array($res)) {
-                       $cats[] =& new ArtifactCategory(&$this,$arr);
+                       $cats[] =& new ArtifactCategory($this,$arr);
                }
                return $cats[];
        }
@@ -654,7 +654,7 @@
        function &getGroupObjects() {
                $res = $this->getGroups();
                while ($arr =& db_fetch_array($res)) {
-                       $grps[] =& new ArtifactGroup(&$this,$arr);
+                       $grps[] =& new ArtifactGroup($this,$arr);
                }
                return $grps[];
        }
@@ -681,7 +681,7 @@
        function &getResolutionObjects() {
                $res = $this->getResolutions();
                while ($arr =& db_fetch_array($res)) {
-                       $grps[] =& new ArtifactResolutions(&$this,$arr);
+                       $grps[] =& new ArtifactResolutions($this,$arr);
                }
                return $grps[];
        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]