Skip to content

Commit

Permalink
2017-03-20 AC: Fixes #18 by adding a missing div tag.
Browse files Browse the repository at this point in the history
Added a closing div tag in the render method of the SEFv2 object.
  • Loading branch information
andrewscaya committed Mar 21, 2017
1 parent 81bb5b5 commit bc977a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sefv2/modsimpleemailform.php
Expand Up @@ -1584,6 +1584,9 @@ class=\"{$this->formInputClass}\"

$this->output .= "</form>\n";

# FLS: Added missing closing div tag (HTML validation error). Thanks to Thonal for this fix!
$this->output .= "</div>\n";

if ($this->formTestMode === 'Y') {
$this->output = htmlspecialchars($this->output);
return '<pre>' . htmlspecialchars($this->testDump($this)) . '</pre>';
Expand Down

0 comments on commit bc977a9

Please sign in to comment.