Skip to content

Commit

Permalink
[BUGFIX] render content raw to avoid extra html tags (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelmatseriks authored and MattiasNilsson committed Dec 14, 2017
1 parent 704cd25 commit 222ffb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/Private/Templates/Theme/MenuContent.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="container">
<div class="row">
<div class="col-md-9 col-md-push-3">
<f:format.html>{content}</f:format.html>
<f:format.raw>{content}</f:format.raw>
</div>
<div class="col-md-3 col-md-pull-9">
<f:render partial="Content/Menu" section="Default" arguments="{_all}" />
Expand All @@ -26,7 +26,7 @@
<div class="container">
<div class="row">
<div class="col-md-3">
<f:format.html>{content}</f:format.html>
<f:format.raw>{content}</f:format.raw>
</div>
<div class="col-md-9">
<f:render partial="Content/Main" section="Default" arguments="{_all}" />
Expand Down

0 comments on commit 222ffb2

Please sign in to comment.