summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-11-09 14:00:14 +0100
committerAndreas Gohr <andi@splitbrain.org>2012-11-09 14:00:14 +0100
commit4d390d4260c028ff110151e305e93b80f3eb13eb (patch)
tree795d4424939deb64f0661d104fb864d8be0918a7
parent383dc9895eac5f1b8ee2a938bfff4a1482228817 (diff)
downloadrpg-4d390d4260c028ff110151e305e93b80f3eb13eb.tar.gz
rpg-4d390d4260c028ff110151e305e93b80f3eb13eb.tar.bz2
don't merge any global confs into auth plugin configs
-rw-r--r--lib/plugins/auth.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/plugins/auth.php b/lib/plugins/auth.php
index 4c3c585cf..cd2f9ac12 100644
--- a/lib/plugins/auth.php
+++ b/lib/plugins/auth.php
@@ -416,21 +416,4 @@ class DokuWiki_Auth_Plugin extends DokuWiki_Plugin {
global $conf;
return ($_SESSION[DOKU_COOKIE]['auth']['time'] >= @filemtime($conf['cachedir'].'/sessionpurge'));
}
-
- /**
- * loadConfig()
- * merges the plugin's default settings with any local settings
- * this function is automatically called through getConf()
- */
- function loadConfig() {
- global $conf;
-
- parent::loadConfig();
-
- $this->conf['debug'] = $conf['debug'];
- $this->conf['useacl'] = $conf['useacl'];
- $this->conf['disableactions'] = $conf['disableactions'];
- $this->conf['autopasswd'] = $conf['autopasswd'];
- $this->conf['passcrypt'] = $conf['ssha'];
- }
}