summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <gohr@cosmocode.de>2015-01-15 12:06:09 +0100
committerAndreas Gohr <gohr@cosmocode.de>2015-01-15 12:06:09 +0100
commit208f4580295554c94e23377a4e02288bd5251908 (patch)
treea621be5d18ce57574e92d557701e81384f805217
parent66f5a5bc04b552e89372a24bfab09f50a2fb78a2 (diff)
downloadrpg-208f4580295554c94e23377a4e02288bd5251908.tar.gz
rpg-208f4580295554c94e23377a4e02288bd5251908.tar.bz2
fixed wrong config check in extension manager #1006
-rw-r--r--lib/plugins/extension/helper/list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/extension/helper/list.php b/lib/plugins/extension/helper/list.php
index 872cccc8c..8bcd00ec6 100644
--- a/lib/plugins/extension/helper/list.php
+++ b/lib/plugins/extension/helper/list.php
@@ -492,7 +492,7 @@ class helper_plugin_extension_list extends DokuWiki_Plugin {
$errors .= '<p class="permerror">'.$this->getLang('git').'</p>';
}
- if ($extension->isEnabled() && in_array('Auth', $extension->getTypes()) && $conf['auth'] != $extension->getID()) {
+ if ($extension->isEnabled() && in_array('Auth', $extension->getTypes()) && $conf['authtype'] != $extension->getID()) {
$errors .= '<p class="permerror">'.$this->getLang('auth').'</p>';
}