From: <tu...@us...> - 2018-02-11 19:10:28
|
Revision: 7955 http://sourceforge.net/p/web-erp/reponame/7955 Author: turbopt Date: 2018-02-11 19:10:26 +0000 (Sun, 11 Feb 2018) Log Message: ----------- SellThroughSupport.php: Remove redundant hidden FormID input. Modified Paths: -------------- trunk/SellThroughSupport.php trunk/doc/Change.log Modified: trunk/SellThroughSupport.php =================================================================== --- trunk/SellThroughSupport.php 2018-02-11 18:54:53 UTC (rev 7954) +++ trunk/SellThroughSupport.php 2018-02-11 19:10:26 UTC (rev 7955) @@ -154,8 +154,8 @@ echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post"> <input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /> <table cellpadding="2" colspan="7" class="selection">'; - echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; - $TableHeader = '<tr> + + $TableHeader = '<tr> <th>' . _('Code') . '</th> <th>' . _('Supplier Name') . '</th> <th>' . _('Currency') . '</th> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-02-11 18:54:53 UTC (rev 7954) +++ trunk/doc/Change.log 2018-02-11 19:10:26 UTC (rev 7955) @@ -1,5 +1,6 @@ webERP Change Log +11/2/18 PaulT: SellThroughSupport.php: Remove redundant hidden FormID input. 11/2/18 PaulT: Contracts.php: Move closing form tag outside of condition. Fixes view page source message "Saw a form start tag, but there was already an active form element. Nested forms are not allowed. Ignoring the tag." reported in Firefox. 10/2/18 PaulT: Remove $db parameter from WoRealRequirements(), EnsureGLEntriesBalance(), and CreateQASample() functions. 10/2/18 PaulT: Remove $db parameter from BomMaterialCost(), GetTaxRate(), GetTaxes(), GetCreditAvailable(), ItemCostUpdateGL(), and UpdateCost() functions. |