diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-11-09 14:04:41 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-11-09 14:04:41 +0100 |
commit | 454d868b911059adb8889a2d6afefa016d6a21f5 (patch) | |
tree | 7dfee1d5327d65eccfebbf5f26fe060f7985269e /lib/plugins/authplain | |
parent | 4d390d4260c028ff110151e305e93b80f3eb13eb (diff) | |
download | rpg-454d868b911059adb8889a2d6afefa016d6a21f5.tar.gz rpg-454d868b911059adb8889a2d6afefa016d6a21f5.tar.bz2 |
make all sub auth classes call the parent constructor
This does nothing currently but allows us adding certain things
to the base class later.
Diffstat (limited to 'lib/plugins/authplain')
-rw-r--r-- | lib/plugins/authplain/auth.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/plugins/authplain/auth.php b/lib/plugins/authplain/auth.php index 570d029ff..2e72bbd79 100644 --- a/lib/plugins/authplain/auth.php +++ b/lib/plugins/authplain/auth.php @@ -23,6 +23,7 @@ class auth_plugin_authplain extends DokuWiki_Auth_Plugin { * @author Christopher Smith <chris@jalakai.co.uk> */ function __construct() { + parent::__construct(); global $config_cascade; if (!@is_readable($config_cascade['plainauth.users']['default'])){ |