|
From: <tu...@us...> - 2018-02-23 05:13:50
|
Revision: 7978
http://sourceforge.net/p/web-erp/reponame/7978
Author: turbopt
Date: 2018-02-23 05:13:47 +0000 (Fri, 23 Feb 2018)
Log Message:
-----------
PaulT: InventoryPlanning.php, InventoryValuation.php, StockCheck.php: Fix view page source message "No space between attributes" reported in Firefox.
Modified Paths:
--------------
trunk/InventoryPlanning.php
trunk/InventoryValuation.php
trunk/StockCheck.php
trunk/doc/Change.log
Modified: trunk/InventoryPlanning.php
===================================================================
--- trunk/InventoryPlanning.php 2018-02-20 13:18:01 UTC (rev 7977)
+++ trunk/InventoryPlanning.php 2018-02-23 05:13:47 UTC (rev 7978)
@@ -466,7 +466,7 @@
echo '<table class="selection">
<tr>
<td>' . _('Select Inventory Categories') . ':</td>
- <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]"multiple="multiple">';
+ <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]" multiple="multiple">';
$SQL = 'SELECT categoryid, categorydescription
FROM stockcategory
ORDER BY categorydescription';
Modified: trunk/InventoryValuation.php
===================================================================
--- trunk/InventoryValuation.php 2018-02-20 13:18:01 UTC (rev 7977)
+++ trunk/InventoryValuation.php 2018-02-23 05:13:47 UTC (rev 7978)
@@ -224,7 +224,7 @@
echo '<table class="selection">
<tr>
<td>' . _('Select Inventory Categories') . ':</td>
- <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]"multiple="multiple">';
+ <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]" multiple="multiple">';
$SQL = 'SELECT categoryid, categorydescription
FROM stockcategory
ORDER BY categorydescription';
Modified: trunk/StockCheck.php
===================================================================
--- trunk/StockCheck.php 2018-02-20 13:18:01 UTC (rev 7977)
+++ trunk/StockCheck.php 2018-02-23 05:13:47 UTC (rev 7978)
@@ -260,7 +260,7 @@
echo '<table class="selection">
<tr>
<td>' . _('Select Inventory Categories') . ':</td>
- <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]"multiple="multiple">';
+ <td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]" multiple="multiple">';
$SQL = 'SELECT categoryid, categorydescription
FROM stockcategory
ORDER BY categorydescription';
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2018-02-20 13:18:01 UTC (rev 7977)
+++ trunk/doc/Change.log 2018-02-23 05:13:47 UTC (rev 7978)
@@ -1,4 +1,6 @@
webERP Change Log
+
+23/2/18 PaulT: InventoryPlanning.php, InventoryValuation.php, StockCheck.php: Fix view page source message "No space between attributes" reported in Firefox.
20/2/18 Exson: sanitize scripts name in footer.inc and forbidden the use of InputSerialItemsSequential.php without login.
19/2/18 PaulT: Stocks.php: Fix navigation bar handling to avoid stockid loss and also disable navigation submit when at the first (or last) item. Change also adds a closing table tag, removes an extra double quote from two attributes, and a minor message layout improvement.
17/2/18 PaulT: PO_SelectOSPurchOrder.php: Derived from Tim's code: add default current dates. (there may not yet be any purchorders records) / PaulT: do not show the order list table when there are no records to show. (avoids a table heading output without any associated row data)
|