summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorKlap-in <klapinklapin@gmail.com>2013-05-15 16:51:44 +0200
committerKlap-in <klapinklapin@gmail.com>2013-05-15 16:51:44 +0200
commit98e31f853f43d94c5bd1d3ab79388c44ce29ce0a (patch)
treef93be5e3291b885f3d96a4ba0be0df00c5eabccd /inc
parent37764cbb34237da3c96bab21102e44ffe2715cd9 (diff)
downloadrpg-98e31f853f43d94c5bd1d3ab79388c44ce29ce0a.tar.gz
rpg-98e31f853f43d94c5bd1d3ab79388c44ce29ce0a.tar.bz2
Fix wrong config key in deprecated auth message
Diffstat (limited to 'inc')
-rw-r--r--inc/auth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php
index 9f180fc94..3f1f7925b 100644
--- a/inc/auth.php
+++ b/inc/auth.php
@@ -54,8 +54,8 @@ function auth_setup() {
} 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[\'authconfig\'] = ' . "auth" . $conf['authtype']
- . ' in your config (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY);
+ 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);
}
}