We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edbd9d8 commit c326ae4Copy full SHA for c326ae4
app/views/forum/threads/index.blade.php
@@ -11,7 +11,7 @@
11
{{-- Display select tags --}}
12
@if (Input::get('tags', null))
13
<div class="tags">
14
- {{ Input::get('tags') }}
+ {{{ Input::get('tags') }}}
15
</div>
16
@endif
17
<a class="button" href="{{ action('ForumThreadsController@getCreateThread') }}">Create Thread</a>
@@ -34,7 +34,7 @@
34
@if (! $threads->count())
35
<div class="empty-state">
36
@if (Input::get('tags'))
37
- <h3>No threads found that are tagged with {{ Input::get('tags') }}</h3>
+ <h3>No threads found that are tagged with {{{ Input::get('tags') }}}</h3>
38
@else
39
<h3>No threads found.</h3>
40
0 commit comments