diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2015-05-15 19:03:34 +0200 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2015-05-15 19:03:34 +0200 |
commit | 26e22ab837dcabe137a0912fcd2f96d0c35f48c8 (patch) | |
tree | 656deee59b1c046f4ac1cebb4ed2bf7d82d72d48 /lib/plugins/usermanager/admin.php | |
parent | 11aaacbee50790c2d5a2c10e97307da213d6320d (diff) | |
download | rpg-26e22ab837dcabe137a0912fcd2f96d0c35f48c8.tar.gz rpg-26e22ab837dcabe137a0912fcd2f96d0c35f48c8.tar.bz2 |
Changes for PHP 7 Compatibility
- replace PHP4 style class constructor function names (based on
class name) with php 5 __construct()
Also remove some '&' reference operators used with objects
And add some object type hints
Diffstat (limited to 'lib/plugins/usermanager/admin.php')
-rw-r--r-- | lib/plugins/usermanager/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/usermanager/admin.php b/lib/plugins/usermanager/admin.php index 9cb9b0c40..0d92e5cc1 100644 --- a/lib/plugins/usermanager/admin.php +++ b/lib/plugins/usermanager/admin.php @@ -36,7 +36,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin { /** * Constructor */ - public function admin_plugin_usermanager(){ + public function __construct(){ /** @var DokuWiki_Auth_Plugin $auth */ global $auth; |