Skip to content

Commit

Permalink
Change Blade curly braces in summary tag to unescaped {!! !!}. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleigh authored and freekmurze committed Sep 8, 2016
1 parent e64eae8 commit 364343d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/feed.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<name> <![CDATA[{{ $item->getFeedItemAuthor() }}]]></name>
</author>
<summary type="html">
<![CDATA[{{ $item->getFeedItemSummary() }}]]>
<![CDATA[{!! $item->getFeedItemSummary() !!}]]>
</summary>
<updated>{{ $item->getFeedItemUpdated()->toAtomString() }}</updated>
</entry>
Expand Down

0 comments on commit 364343d

Please sign in to comment.