diff options
author | Klap-in <klapinklapin@gmail.com> | 2013-05-15 16:51:44 +0200 |
---|---|---|
committer | Klap-in <klapinklapin@gmail.com> | 2013-05-15 16:51:44 +0200 |
commit | 98e31f853f43d94c5bd1d3ab79388c44ce29ce0a (patch) | |
tree | f93be5e3291b885f3d96a4ba0be0df00c5eabccd | |
parent | 37764cbb34237da3c96bab21102e44ffe2715cd9 (diff) | |
download | rpg-98e31f853f43d94c5bd1d3ab79388c44ce29ce0a.tar.gz rpg-98e31f853f43d94c5bd1d3ab79388c44ce29ce0a.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); } } |