diff options
author | Anika Henke <anika@selfthinker.org> | 2013-05-27 16:39:54 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-08 13:12:54 +0200 |
commit | 8b7ff1928039b0420890996b05307b2f9f297208 (patch) | |
tree | dbd7d49c2473dda14c895965afc55b959bf100bb | |
parent | ee8ab6d7ff4fa460355f41309bcb9ed2e1b41036 (diff) | |
download | rpg-8b7ff1928039b0420890996b05307b2f9f297208.tar.gz rpg-8b7ff1928039b0420890996b05307b2f9f297208.tar.bz2 |
fixed wrong use of quotes in authtype warning message
-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); } } |