1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 23:14:29 +02:00

Add another newline before custom footer HTML

This commit is contained in:
Franz Liedke
2018-01-05 23:46:38 +01:00
parent 6dc96b38af
commit 0380536cb4

View File

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