Skip to content

Commit

Permalink
Contracts.php: Move closing form tag outside of condition. Fixes view…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
TurboPT authored and timschofield committed Feb 27, 2018
1 parent e6aa432 commit d2a5d9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Contracts.php
Expand Up @@ -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 */

Expand Down
1 change: 1 addition & 0 deletions 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.
Expand Down

0 comments on commit d2a5d9d

Please sign in to comment.