From 6067b623aa2a1b80077633c22183f201392912e3 Mon Sep 17 00:00:00 2001 From: bradymiller Date: Sat, 15 Jun 2013 14:11:12 -0700 Subject: [PATCH] Translation project - clean up a duplicate constant --- library/authentication/password_change.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/authentication/password_change.php b/library/authentication/password_change.php index b7e2c72cc..7af520c81 100644 --- a/library/authentication/password_change.php +++ b/library/authentication/password_change.php @@ -89,7 +89,7 @@ function update_password($activeUser,$targetUser,&$currentPwd,&$newPwd,&$errMsg, $hash_current = password_hash($currentPwd,$userInfo[COL_SALT]); if(($hash_current!=$userInfo[COL_PWD])) { - $errMsg=xl("Incorrect password"); + $errMsg=xl("Incorrect password!"); return false; } } @@ -205,4 +205,4 @@ function update_password($activeUser,$targetUser,&$currentPwd,&$newPwd,&$errMsg, return true; } -?> \ No newline at end of file +?> -- 2.11.4.GIT