Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
PHP7 Constructor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jan 12, 2016
1 parent e8d94b8 commit 54a4c15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/joomla/1.5/user.ajaxplorer/ajaxplorer.php
Expand Up @@ -32,7 +32,7 @@ class plgUserAjaxplorer extends JPlugin
* @param array $config An array that holds the plugin configuration
* @since 1.5
*/
public function plgUserAjaxplorer(& $subject, $config)
public function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->_plugin = JPluginHelper::getPlugin( 'user', 'ajaxplorer' );
Expand Down
2 changes: 1 addition & 1 deletion ext/joomla/1.6/user.ajaxplorer/ajaxplorer.php
Expand Up @@ -34,7 +34,7 @@ class plgUserAjaxplorer extends JPlugin
* @param array $config An array that holds the plugin configuration
* @since 1.6
*/
public function plgUserAjaxplorer(& $subject, $config)
public function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->_plugin = JPluginHelper::getPlugin( 'user', 'ajaxplorer' );
Expand Down
2 changes: 1 addition & 1 deletion ext/joomla/3.0/user.pydio/pydio.php
Expand Up @@ -34,7 +34,7 @@ class plgUserPydio extends JPlugin
* @param array $config An array that holds the plugin configuration
* @since 1.6
*/
public function plgUserPydio(& $subject, $config)
public function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->_plugin = JPluginHelper::getPlugin( 'user', 'pydio' );
Expand Down

0 comments on commit 54a4c15

Please sign in to comment.