Skip to content

Commit

Permalink
Allow auto p on comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianthulin committed Aug 16, 2016
1 parent 874add6 commit 33edae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/partials/blog/comments.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</time>
</header>
<div class="comment-text">
{{ $comment->comment_content }}
{!! apply_filters('the_content', $comment->comment_content) !!}
</div>

@foreach($comments as $answer)
Expand All @@ -24,7 +24,7 @@
</time>
</header>
<div class="comment-text">
{{ $answer->comment_content }}
{!! apply_filters('the_content', $answer->comment_content) !!}
</div>
</li>
</ul>
Expand Down

0 comments on commit 33edae3

Please sign in to comment.