diff options
author | Klap-in <klapinklapin@gmail.com> | 2013-05-15 16:51:44 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-08 13:12:14 +0200 |
commit | 742ea690db72894cbead8b4843a757bf6680fd98 (patch) | |
tree | 4b28a0534af11c0aaf4b478bd0b14de31ffb74da | |
parent | a67083ba380b1a1ca201cce641fe437251571307 (diff) | |
download | rpg-742ea690db72894cbead8b4843a757bf6680fd98.tar.gz rpg-742ea690db72894cbead8b4843a757bf6680fd98.tar.bz2 |
Fix wrong config key in deprecated auth message
-rw-r--r-- | inc/auth.php | 4 |
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); } } |