From: <ice...@us...> - 2013-08-15 13:48:53
|
Revision: 6234 http://sourceforge.net/p/web-erp/reponame/6234 Author: icedlava Date: 2013-08-15 13:48:50 +0000 (Thu, 15 Aug 2013) Log Message: ----------- Correct typo in pattern for phone and fax input fields. Modified Paths: -------------- trunk/Locations.php Modified: trunk/Locations.php =================================================================== --- trunk/Locations.php 2013-08-15 09:31:29 UTC (rev 6233) +++ trunk/Locations.php 2013-08-15 13:48:50 UTC (rev 6234) @@ -577,11 +577,11 @@ </tr> <tr> <td>' . _('Telephone No') . ':' . '</td> - <td><input type="tel" name="Tel" pattern="[0-9\+\s]*]" value="' . $_POST['Tel'] . '" size="31" maxlength="30" /></td> + <td><input type="tel" name="Tel" pattern="[0-9\+\s]*" value="' . $_POST['Tel'] . '" size="31" maxlength="30" title="' . _('The phone number should consist of numbers, spaces or the + character') . '" /></td> </tr> <tr> <td>' . _('Facsimile No') . ':' . '</td> - <td><input type="tel" name="Fax" pattern="[0-9\+\s]*]" value="' . $_POST['Fax'] . '" size="31" maxlength="30" /></td> + <td><input type="tel" name="Fax" pattern="[0-9\+\s]*" value="' . $_POST['Fax'] . '" size="31" maxlength="30" title="' . _('The fax number should consist of numbers, spaces or the + character') . '"/></td> </tr> <tr> <td>' . _('Email') . ':' . '</td> |