From: <ex...@us...> - 2015-12-09 07:53:33
|
Revision: 7407 http://sourceforge.net/p/web-erp/reponame/7407 Author: exsonqu Date: 2015-12-09 07:53:30 +0000 (Wed, 09 Dec 2015) Log Message: ----------- 09/12/05 Exson: Fixed the telephone regular expression bug in SelectCustomer.php. Reported by Terry. Modified Paths: -------------- trunk/SelectCustomer.php Modified: trunk/SelectCustomer.php =================================================================== --- trunk/SelectCustomer.php 2015-12-01 15:08:45 UTC (rev 7406) +++ trunk/SelectCustomer.php 2015-12-09 07:53:30 UTC (rev 7407) @@ -289,7 +289,7 @@ if (isset($_POST['CustPhone'])) { echo '<input type="tel" name="CustPhone" pattern="[0-9\-\s()+]*" value="' . $_POST['CustPhone'] . '" size="15" maxlength="18" />'; } else { - echo '<input type="tel" name="CustPhone" pattern="[0-9\-\s()+]* "size="15" maxlength="18" />'; + echo '<input type="tel" name="CustPhone" pattern="[0-9\-\s()+]*" size="15" maxlength="18" />'; } echo '</td>'; echo '<td><b>' . _('OR') . '</b></td> |