diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-02-17 14:10:10 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-02-17 14:10:10 +0100 |
commit | 451e1b4dc1985d10b3aeaeeaf23d5498ce87032b (patch) | |
tree | 3f4797c772257db473fc667cc46074cb40277d87 | |
parent | 7cb9c0e3233fdc295a05e410a1d7a731301bc2da (diff) | |
download | rpg-451e1b4dc1985d10b3aeaeeaf23d5498ce87032b.tar.gz rpg-451e1b4dc1985d10b3aeaeeaf23d5498ce87032b.tar.bz2 |
use correct lang string for password mismatch
-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 740a75a5c..437a82a82 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -872,7 +872,7 @@ function act_resendpwd(){ // password given correctly? if(!isset($_REQUEST['pass']) || $_REQUEST['pass'] == '') return false; if($_REQUEST['pass'] != $_REQUEST['passchk']){ - msg('password mismatch',-1); #FIXME localize + msg($lang['regbadpass'],-1); return false; } $pass = $_REQUEST['pass']; |