[Fusionforge-commits] FusionForge branch master updated. 6.0.4-555-ge0d1c8d

Franck Villaume nerville at libremir.placard.fr.eu.org
Fri Jun 17 20:11:44 CEST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  e0d1c8d73c7eba8c572583e350a90280d34b23c7 (commit)
      from  e77ed7eb3f090fc799f15bb16e93bbf1dff3507b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=e0d1c8d73c7eba8c572583e350a90280d34b23c7

commit e0d1c8d73c7eba8c572583e350a90280d34b23c7
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Fri Jun 17 20:11:17 2016 +0200

    fix rename ForgeAuthPlugin constructor into __construct

diff --git a/src/plugins/authcas/common/AuthCASPlugin.class.php b/src/plugins/authcas/common/AuthCASPlugin.class.php
index 454b1ac..5dd9018 100644
--- a/src/plugins/authcas/common/AuthCASPlugin.class.php
+++ b/src/plugins/authcas/common/AuthCASPlugin.class.php
@@ -29,7 +29,7 @@ require_once $gfcommon.'include/AuthPlugin.class.php';
 class AuthCASPlugin extends ForgeAuthPlugin {
 	function AuthCASPlugin () {
 		global $gfconfig;
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 		$this->name = "authcas";
 		$this->text = _("CAS authentication");
 		$this->pkg_desc =
diff --git a/src/plugins/authhttpd/common/AuthHTTPDPlugin.class.php b/src/plugins/authhttpd/common/AuthHTTPDPlugin.class.php
index 631c7e4..5e7c4fe 100644
--- a/src/plugins/authhttpd/common/AuthHTTPDPlugin.class.php
+++ b/src/plugins/authhttpd/common/AuthHTTPDPlugin.class.php
@@ -28,7 +28,7 @@ require_once $gfcommon.'include/AuthPlugin.class.php';
 class AuthHTTPDPlugin extends ForgeAuthPlugin {
 	function AuthHTTPDPlugin () {
 		global $gfconfig;
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 		$this->name = "authhttpd";
 		$this->text = _("HTTPD authentication");
 		$this->pkg_desc =
diff --git a/src/plugins/authldap/common/AuthLDAPPlugin.class.php b/src/plugins/authldap/common/AuthLDAPPlugin.class.php
index 7909019..2f409db 100644
--- a/src/plugins/authldap/common/AuthLDAPPlugin.class.php
+++ b/src/plugins/authldap/common/AuthLDAPPlugin.class.php
@@ -35,7 +35,7 @@ class AuthLDAPPlugin extends ForgeAuthPlugin {
 
 	function AuthLDAPPlugin() {
 		global $gfconfig;
-		$this->ForgeAuthPlugin();
+		parent::__construct();
 		$this->name = "authldap";
 		$this->text = _("LDAP authentication");
 		$this->pkg_desc =
diff --git a/src/plugins/authopenid/include/AuthOpenIDPlugin.class.php b/src/plugins/authopenid/include/AuthOpenIDPlugin.class.php
index aa8cee1..6c37ccf 100644
--- a/src/plugins/authopenid/include/AuthOpenIDPlugin.class.php
+++ b/src/plugins/authopenid/include/AuthOpenIDPlugin.class.php
@@ -39,7 +39,7 @@ class AuthOpenIDPlugin extends ForgeAuthPlugin {
 
 	function AuthOpenIDPlugin () {
 		global $gfconfig;
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 		$this->name = "authopenid";
 		$this->text = "OpenID authentication";
 
diff --git a/src/plugins/authwebid/include/AuthWebIDPlugin.class.php b/src/plugins/authwebid/include/AuthWebIDPlugin.class.php
index f8e06e2..2d9508b 100644
--- a/src/plugins/authwebid/include/AuthWebIDPlugin.class.php
+++ b/src/plugins/authwebid/include/AuthWebIDPlugin.class.php
@@ -44,7 +44,7 @@ class AuthWebIDPlugin extends ForgeAuthPlugin {
 
 	function AuthWebIDPlugin () {
 		global $gfconfig;
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 		$this->name = "authwebid";
 		$this->text = "WebID authentication";
 
diff --git a/src/plugins/oauthconsumer/include/oauthconsumerPlugin.class.php b/src/plugins/oauthconsumer/include/oauthconsumerPlugin.class.php
index dc12ad9..6500090 100644
--- a/src/plugins/oauthconsumer/include/oauthconsumerPlugin.class.php
+++ b/src/plugins/oauthconsumer/include/oauthconsumerPlugin.class.php
@@ -4,7 +4,7 @@ class oauthconsumerPlugin extends ForgeAuthPlugin {
 
 	function __construct() {
 
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 
 		$this->name = 'oauthconsumer';
 		$this->text = 'OAuth Consumer'; // To show in the tabs, use...
diff --git a/src/plugins/oauthprovider/include/oauthprovider_plugin.php b/src/plugins/oauthprovider/include/oauthprovider_plugin.php
index 9271b08..73d53f0 100644
--- a/src/plugins/oauthprovider/include/oauthprovider_plugin.php
+++ b/src/plugins/oauthprovider/include/oauthprovider_plugin.php
@@ -31,7 +31,7 @@ class oauthproviderPlugin extends ForgeAuthPlugin {
 	public $oauth_user = null;
 	function __construct() {
 
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 
 		$this->name = 'oauthprovider';
 		$this->text = 'OAuthProvider'; // To show in the tabs, use...
diff --git a/src/plugins/twitter/include/twitterPlugin.class.php b/src/plugins/twitter/include/twitterPlugin.class.php
index b0e2e9b..a97bc02 100644
--- a/src/plugins/twitter/include/twitterPlugin.class.php
+++ b/src/plugins/twitter/include/twitterPlugin.class.php
@@ -24,7 +24,7 @@
 class twitterPlugin extends ForgeAuthPlugin {
 	function __construct() {
 
-		$this->ForgeAuthPlugin() ;
+		parent::__construct();
 
 		$this->name = 'twitter';
 		$this->text = 'Twitter'; // To show in the tabs, use...

-----------------------------------------------------------------------

Summary of changes:
 src/plugins/authcas/common/AuthCASPlugin.class.php              | 2 +-
 src/plugins/authhttpd/common/AuthHTTPDPlugin.class.php          | 2 +-
 src/plugins/authldap/common/AuthLDAPPlugin.class.php            | 2 +-
 src/plugins/authopenid/include/AuthOpenIDPlugin.class.php       | 2 +-
 src/plugins/authwebid/include/AuthWebIDPlugin.class.php         | 2 +-
 src/plugins/oauthconsumer/include/oauthconsumerPlugin.class.php | 2 +-
 src/plugins/oauthprovider/include/oauthprovider_plugin.php      | 2 +-
 src/plugins/twitter/include/twitterPlugin.class.php             | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list