diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-04-01 17:03:25 +0100 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-04-01 17:03:25 +0100 |
commit | 0b2e0a720d550ed8e96ffcdc62cbbffe78d27c21 (patch) | |
tree | 4e7f2528638b38e2762fc3cad0f243bf81f831b3 /inc/auth.php | |
parent | d3bae4781025502fdfb729854e39f8b2072b8a37 (diff) | |
download | rpg-0b2e0a720d550ed8e96ffcdc62cbbffe78d27c21.tar.gz rpg-0b2e0a720d550ed8e96ffcdc62cbbffe78d27c21.tar.bz2 |
restrict 'authtype deprecated' alert to superusers only
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 0713ca6af..9f180fc94 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -55,7 +55,7 @@ function auth_setup() { // 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); + . ' in your config (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY); } } |