[Fusionforge-commits] r7978 - in trunk/gforge/plugins: scmbzr/common scmcvs/common scmsvn/common

Roland Mas lolando at libremir.placard.fr.eu.org
Thu Aug 27 15:38:51 CEST 2009


Author: lolando
Date: 2009-08-27 15:38:50 +0200 (Thu, 27 Aug 2009)
New Revision: 7978

Modified:
   trunk/gforge/plugins/scmbzr/common/BzrPlugin.class.php
   trunk/gforge/plugins/scmcvs/common/CVSPlugin.class.php
   trunk/gforge/plugins/scmsvn/common/SVNPlugin.class.php
Log:
Call appropriate constructor method

Modified: trunk/gforge/plugins/scmbzr/common/BzrPlugin.class.php
===================================================================
--- trunk/gforge/plugins/scmbzr/common/BzrPlugin.class.php	2009-08-27 13:38:39 UTC (rev 7977)
+++ trunk/gforge/plugins/scmbzr/common/BzrPlugin.class.php	2009-08-27 13:38:50 UTC (rev 7978)
@@ -24,7 +24,7 @@
 class BzrPlugin extends SCMPlugin {
 	function BzrPlugin () {
 		global $gfconfig;
-		$this->SCM () ;
+		$this->SCMPlugin () ;
 		$this->name = 'scmbzr';
 		$this->text = 'Bazaar';
 		$this->hooks[] = 'scm_page';

Modified: trunk/gforge/plugins/scmcvs/common/CVSPlugin.class.php
===================================================================
--- trunk/gforge/plugins/scmcvs/common/CVSPlugin.class.php	2009-08-27 13:38:39 UTC (rev 7977)
+++ trunk/gforge/plugins/scmcvs/common/CVSPlugin.class.php	2009-08-27 13:38:50 UTC (rev 7978)
@@ -25,7 +25,7 @@
 	function CVSPlugin () {
 		global $cvs_root;
 		global $gfconfig;
-		$this->SCM () ;
+		$this->SCMPlugin () ;
 		$this->name = 'scmcvs';
 		$this->text = 'CVS';
 		$this->hooks[] = 'scm_page';

Modified: trunk/gforge/plugins/scmsvn/common/SVNPlugin.class.php
===================================================================
--- trunk/gforge/plugins/scmsvn/common/SVNPlugin.class.php	2009-08-27 13:38:39 UTC (rev 7977)
+++ trunk/gforge/plugins/scmsvn/common/SVNPlugin.class.php	2009-08-27 13:38:50 UTC (rev 7978)
@@ -25,7 +25,7 @@
 class SVNPlugin extends SCMPlugin {
 	function SVNPlugin () {
 		global $gfconfig;
-		$this->SCM () ;
+		$this->SCMPlugin () ;
 		$this->name = 'scmsvn';
 		$this->text = 'SVN';
 		$this->hooks[] = 'scm_page';




More information about the Fusionforge-commits mailing list