diff options
author | Patrick Brown <ptbrown@whoopdedo.org> | 2015-03-31 21:53:01 -0400 |
---|---|---|
committer | Patrick Brown <ptbrown@whoopdedo.org> | 2015-03-31 21:53:01 -0400 |
commit | 5b795a651d514c6889ad05abc4e58de67c7af92e (patch) | |
tree | 3cbcdcfc3a7b1696bf532d321b3bd5585b4f9e8e /lib/plugins/authad/auth.php | |
parent | 8838b88a0fc8bff42993390fe64f09637ce4c2df (diff) | |
download | rpg-5b795a651d514c6889ad05abc4e58de67c7af92e.tar.gz rpg-5b795a651d514c6889ad05abc4e58de67c7af92e.tar.bz2 |
Move language string to authad plugin
Diffstat (limited to 'lib/plugins/authad/auth.php')
-rw-r--r-- | lib/plugins/authad/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/authad/auth.php b/lib/plugins/authad/auth.php index 400a5efee..40c56ef09 100644 --- a/lib/plugins/authad/auth.php +++ b/lib/plugins/authad/auth.php @@ -258,7 +258,7 @@ class auth_plugin_authad extends DokuWiki_Auth_Plugin { ($info['expiresin'] <= $this->conf['expirywarn']) && !$this->msgshown ) { - $msg = sprintf($lang['authpwdexpire'], $info['expiresin']); + $msg = sprintf($this->getLang('authpwdexpire'), $info['expiresin']); if($this->canDo('modPass')) { $url = wl($ID, array('do'=> 'profile')); $msg .= ' <a href="'.$url.'">'.$lang['btn_profile'].'</a>'; |