Skip to content

Commit

Permalink
use correct lang string for password mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
splitbrain committed Feb 17, 2012
1 parent 7cb9c0e commit 451e1b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/auth.php
Expand Up @@ -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'];
Expand Down

0 comments on commit 451e1b4

Please sign in to comment.