From d2a5d9d7e9d87332933eb57b16e33dd128260b52 Mon Sep 17 00:00:00 2001 From: Paul Thursby Date: Tue, 27 Feb 2018 11:08:26 +0000 Subject: [PATCH] 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. --- Contracts.php | 4 +++- doc/Change.log | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Contracts.php b/Contracts.php index f6e77e52d..1c971e82d 100644 --- a/Contracts.php +++ b/Contracts.php @@ -812,9 +812,11 @@ } //end of while loop - echo ''; + echo ''; }//end if results to show + echo ''; + //end if RequireCustomerSelection } else { /*A customer is already selected so get into the contract setup proper */ diff --git a/doc/Change.log b/doc/Change.log index c880654fe..b3db489bd 100644 --- a/doc/Change.log +++ b/doc/Change.log @@ -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.