diff options
author | Anika Henke <anika@selfthinker.org> | 2013-05-27 16:39:54 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2013-05-27 16:39:54 +0100 |
commit | a91f1103e66d9f28375fc94de05ebbcde454950d (patch) | |
tree | c9e47c4ef0ddc57cbe35cb714279c4a4c536ee98 /inc/auth.php | |
parent | 6b519690e45cefe83fbef5691e372c6078c3fb9b (diff) | |
download | rpg-a91f1103e66d9f28375fc94de05ebbcde454950d.tar.gz rpg-a91f1103e66d9f28375fc94de05ebbcde454950d.tar.bz2 |
fixed wrong use of quotes in authtype warning message
Diffstat (limited to 'inc/auth.php')
-rw-r--r-- | inc/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/auth.php b/inc/auth.php index 3f1f7925b..af9f35b38 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -54,7 +54,7 @@ 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[\'authtype\'] = ' . "auth" . $conf['authtype'] + 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); } } |