Add another newline before custom footer HTML

This commit is contained in:
Franz Liedke 2018-01-05 23:46:38 +01:00
parent 0d8dfabbb3
commit 048c0a21c3

View File

@ -382,11 +382,7 @@ class FrontendView
protected function buildFootContent($customFooterHtml)
{
$html = implode("\n", $this->foot);
$html .= $customFooterHtml;
return $html;
return implode("\n", $this->foot) . "\n" . $customFooterHtml;
}
/**