Skip to content
Snippets Groups Projects
Commit 955d4588 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

removed support for loading authplugins by old name #1535

parent 5b17fbaa
No related branches found
No related tags found
No related merge requests found
......@@ -51,11 +51,6 @@ function auth_setup() {
if ($conf['authtype'] === $plugin) {
$auth = $plugin_controller->load('auth', $plugin);
break;
} elseif ('auth' . $conf['authtype'] === $plugin) {
// matches old auth backends (pre-Weatherwax)
$auth = $plugin_controller->load('auth', $plugin);
msg('Your authtype setting is deprecated. You must set $conf[\'authtype\'] = "auth' . $conf['authtype'] . '"'
. ' in your configuration (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment