summaryrefslogtreecommitdiff
path: root/inc/auth.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-02-17 14:10:10 +0100
committerAndreas Gohr <andi@splitbrain.org>2012-02-17 14:10:10 +0100
commit451e1b4dc1985d10b3aeaeeaf23d5498ce87032b (patch)
tree3f4797c772257db473fc667cc46074cb40277d87 /inc/auth.php
parent7cb9c0e3233fdc295a05e410a1d7a731301bc2da (diff)
downloadrpg-451e1b4dc1985d10b3aeaeeaf23d5498ce87032b.tar.gz
rpg-451e1b4dc1985d10b3aeaeeaf23d5498ce87032b.tar.bz2
use correct lang string for password mismatch
Diffstat (limited to 'inc/auth.php')
-rw-r--r--inc/auth.php2
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'];