| 
      
      
      From: <tu...@us...> - 2018-02-11 18:54:56
      
     | 
| Revision: 7954
          http://sourceforge.net/p/web-erp/reponame/7954
Author:   turbopt
Date:     2018-02-11 18:54:53 +0000 (Sun, 11 Feb 2018)
Log Message:
-----------
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.
Modified Paths:
--------------
    trunk/Contracts.php
    trunk/doc/Change.log
Modified: trunk/Contracts.php
===================================================================
--- trunk/Contracts.php	2018-02-11 05:06:14 UTC (rev 7953)
+++ trunk/Contracts.php	2018-02-11 18:54:53 UTC (rev 7954)
@@ -812,9 +812,11 @@
 		}
 //end of while loop
 
-		echo '</table></form>';
+		echo '</table>';
 	}//end if results to show
 
+	echo '</form>';
+
 //end if RequireCustomerSelection
 } else { /*A customer is already selected so get into the contract setup proper */
 
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log	2018-02-11 05:06:14 UTC (rev 7953)
+++ trunk/doc/Change.log	2018-02-11 18:54:53 UTC (rev 7954)
@@ -1,5 +1,6 @@
 webERP Change Log
 
+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.
 10/2/18  PaulT: Remove $db parameter from all GetStockGLCode() functions.
 |