[Fusionforge-commits] FusionForge branch master updated. 6.0.4-556-ga86a887

Franck Villaume nerville at libremir.placard.fr.eu.org
Sat Jun 18 14:09:23 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  a86a887a66ea2c799d1880ee79e786b981c6c69e (commit)
      from  e0d1c8d73c7eba8c572583e350a90280d34b23c7 (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=a86a887a66ea2c799d1880ee79e786b981c6c69e

commit a86a887a66ea2c799d1880ee79e786b981c6c69e
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Sat Jun 18 14:09:01 2016 +0200

    fix rename SysAuthPlugin function to __construct form

diff --git a/src/plugins/sysauthldap/common/SysAuthLDAPPlugin.class.php b/src/plugins/sysauthldap/common/SysAuthLDAPPlugin.class.php
index 5089efd..0dccbff 100644
--- a/src/plugins/sysauthldap/common/SysAuthLDAPPlugin.class.php
+++ b/src/plugins/sysauthldap/common/SysAuthLDAPPlugin.class.php
@@ -38,7 +38,7 @@ require_once $gfcommon.'include/SysAuthPlugin.class.php';
 
 class SysAuthLDAPPlugin extends SysAuthPlugin {
 	function SysAuthLDAPPlugin () {
-		$this->SysAuthPlugin() ;
+		parent::__construct();
 		$this->name = "sysauthldap" ;
 		$this->text = _("System authentication via LDAP");
 		$this->pkg_desc =
diff --git a/src/plugins/sysauthpgsql/common/SysAuthPGSQLPlugin.class.php b/src/plugins/sysauthpgsql/common/SysAuthPGSQLPlugin.class.php
index b67d2aa..12e6798 100644
--- a/src/plugins/sysauthpgsql/common/SysAuthPGSQLPlugin.class.php
+++ b/src/plugins/sysauthpgsql/common/SysAuthPGSQLPlugin.class.php
@@ -23,7 +23,7 @@
 
 class SysAuthPGSQLPlugin extends SysAuthPlugin {
 	function SysAuthPGSQLPlugin () {
-		$this->SysAuthPlugin() ;
+		parent::__construct();
 		$this->name = "sysauthpgsql" ;
 		$this->text = "System authentication via PostgreSQL";
 	}

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

Summary of changes:
 src/plugins/sysauthldap/common/SysAuthLDAPPlugin.class.php   | 2 +-
 src/plugins/sysauthpgsql/common/SysAuthPGSQLPlugin.class.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list