From: <tu...@us...> - 2018-02-17 18:22:42
|
Revision: 7971 http://sourceforge.net/p/web-erp/reponame/7971 Author: turbopt Date: 2018-02-17 18:22:39 +0000 (Sat, 17 Feb 2018) Log Message: ----------- Customers.php, ShopParameter.php: Fix view page source message "No space between attributes" reported in Firefox. Modified Paths: -------------- trunk/Customers.php trunk/ShopParameters.php trunk/doc/Change.log Modified: trunk/Customers.php =================================================================== --- trunk/Customers.php 2018-02-17 17:46:23 UTC (rev 7970) +++ trunk/Customers.php 2018-02-17 18:22:39 UTC (rev 7971) @@ -457,7 +457,7 @@ if ($_SESSION['AutoDebtorNo']==0) { echo '<tr> <td>' . _('Customer Code') . ':</td> - <td><input type="text" data-type="no-illegal-chars" tabindex="1" name="DebtorNo" required="required" autofocus="autofocus"title ="'._('Up to 10 characters for the customer code. The following characters are prohibited:') . ' \' " + . & \\ > <" placeholder="'._('alpha-numeric').'" size="11" maxlength="10" /></td></tr>'; + <td><input type="text" data-type="no-illegal-chars" tabindex="1" name="DebtorNo" required="required" autofocus="autofocus" title ="'._('Up to 10 characters for the customer code. The following characters are prohibited:') . ' \' " + . & \\ > <" placeholder="'._('alpha-numeric').'" size="11" maxlength="10" /></td></tr>'; } echo '<tr> Modified: trunk/ShopParameters.php =================================================================== --- trunk/ShopParameters.php 2018-02-17 17:46:23 UTC (rev 7970) +++ trunk/ShopParameters.php 2018-02-17 18:22:39 UTC (rev 7971) @@ -238,7 +238,7 @@ // Shop Customer echo '<tr> <td>' . _('Default Web Shop Customer Acount') . ':</td> - <td><input type="text"size="12" maxlength="10" required="required" name="X_ShopDebtorNo" value="' . $_SESSION['ShopDebtorNo'] . '" /></td> + <td><input type="text" size="12" maxlength="10" required="required" name="X_ShopDebtorNo" value="' . $_SESSION['ShopDebtorNo'] . '" /></td> <td>' . _('Select the customer account that is to be used for the web-store sales') . '</td> </tr>'; // Shop Customer Branch Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-02-17 17:46:23 UTC (rev 7970) +++ trunk/doc/Change.log 2018-02-17 18:22:39 UTC (rev 7971) @@ -1,5 +1,6 @@ webERP Change Log +17/2/18 PaulT: Customers.php, ShopParameters.php: Fix view page source message "No space between attributes" reported in Firefox. 17/2/18 PaulT: Labels.php: Remove extra closing </td></tr> tag pair. 17/2/18 PaulT: FixedAssetLocations.php: Move closing condition brace to cover entire table output to avoid a stray closing table tag output if the condition is not met. Also, replace some style attributes with equivalent CSS. 17/2/18 PaulT: MaintenanceUserSchedule.php: Fix closing tag mismatch. |