From: <ex...@us...> - 2013-07-24 11:02:32
|
Revision: 6142 http://sourceforge.net/p/web-erp/reponame/6142 Author: exsonqu Date: 2013-07-24 11:02:29 +0000 (Wed, 24 Jul 2013) Log Message: ----------- 24/7/2013 Exson: Fixed that empty password should be allowed. Reported by Tim. Modified Paths: -------------- trunk/WWW_Users.php Modified: trunk/WWW_Users.php =================================================================== --- trunk/WWW_Users.php 2013-07-24 10:28:25 UTC (rev 6141) +++ trunk/WWW_Users.php 2013-07-24 11:02:29 UTC (rev 6142) @@ -452,7 +452,7 @@ } echo '<tr> <td>' . _('Password') . ':</td> - <td><input type="password" pattern=".{5,}" name="Password" required="true" size="22" maxlength="20" value="' . $_POST['Password'] . '" placeholder="'._('not less than 5 characters').'" title="'._('Please enter not less than 5 characters and cannot same as users id').'" /></td> + <td><input type="password" pattern=".{5,}" name="Password" size="22" maxlength="20" value="' . $_POST['Password'] . '" placeholder="'._('not less than 5 characters').'" title="'._('Please enter not less than 5 characters and cannot same as users id').'" /></td> </tr>'; echo '<tr> <td>' . _('Full Name') . ':</td> |