From: <ex...@us...> - 2014-10-24 12:54:45
|
Revision: 6934 http://sourceforge.net/p/web-erp/reponame/6934 Author: exsonqu Date: 2014-10-24 12:54:40 +0000 (Fri, 24 Oct 2014) Log Message: ----------- 24/10/14 Exson: Fixed the extra blank in pattern in TaxGroups.php which leads to input failure. Modified Paths: -------------- trunk/TaxGroups.php Modified: trunk/TaxGroups.php =================================================================== --- trunk/TaxGroups.php 2014-10-24 12:47:56 UTC (rev 6933) +++ trunk/TaxGroups.php 2014-10-24 12:54:40 UTC (rev 6934) @@ -238,7 +238,7 @@ $_POST['GroupName']=''; } echo '<tr><td>' . _('Tax Group') . ':</td> - <td><input pattern="(?!^ +$)[^><+-] {4,}" title="'._('The group name must be more 4 and less than 40 characters and cannot be left blank').'" placeholder="'._('4 to 40 legal characters').'" type="text" name="GroupName" size="40" maxlength="40" value="' . $_POST['GroupName'] . '" /></td>'; + <td><input pattern="(?!^ +$)[^><+-]{4,}" title="'._('The group name must be more 4 and less than 40 characters and cannot be left blank').'" placeholder="'._('4 to 40 legal characters').'" type="text" name="GroupName" size="40" maxlength="40" value="' . $_POST['GroupName'] . '" /></td>'; echo '<td><input type="submit" name="submit" value="' . _('Enter Group') . '" /></td> </tr> </table> |