diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-05-02 11:10:37 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-05-02 11:10:37 +0200 |
commit | da624c8c15b984399797b0e5d25b03ffdf35388d (patch) | |
tree | 27fc05d3ca750a2db778525d21a1f1250275df41 /lib/plugins/authad/auth.php | |
parent | 421c22ae13e8de7f63d1fe6ed683ee4b8a48a8ee (diff) | |
parent | d49d4260ee0fed5eabc3773440fc1073a87c56dd (diff) | |
download | rpg-da624c8c15b984399797b0e5d25b03ffdf35388d.tar.gz rpg-da624c8c15b984399797b0e5d25b03ffdf35388d.tar.bz2 |
Merge branch 'languagecleanup' of git://github.com/ptbrown/dokuwiki into pull-request-1105
* 'languagecleanup' of git://github.com/ptbrown/dokuwiki:
Remove no longer needed language string
Delete unused div (Fixes #1098)
Remove unused language strings
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>'; |