[Greater-commits] r3861 - trunk/Administration

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Dec 5 15:10:35 CET 2011


Author: bricks
Date: 2011-12-05 15:10:34 +0100 (Mon, 05 Dec 2011)
New Revision: 3861

Modified:
   trunk/Administration/PwdDialog.cpp
Log:
Don't use uppercase letters for password changes

This results in a WRONG password on case sesitive plattforms


Modified: trunk/Administration/PwdDialog.cpp
===================================================================
--- trunk/Administration/PwdDialog.cpp	2011-12-05 14:09:51 UTC (rev 3860)
+++ trunk/Administration/PwdDialog.cpp	2011-12-05 14:10:34 UTC (rev 3861)
@@ -203,8 +203,8 @@
 
   //Read input values from text controls
   userName = textUser->GetValue();
-  pwd = textPwd->GetValue().MakeUpper();
-  confirm = textConfirm->GetValue().MakeUpper();
+  pwd = textPwd->GetValue(); //.MakeUpper();
+  confirm = textConfirm->GetValue(); //.MakeUpper();
 
   //Check if all mandatory fields are filled
   if (pwd.IsEmpty() == true)



More information about the Greater-commits mailing list