Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/articles/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{{-- Display select tags --}}
@if(Input::get('tags'))
<div class="tags">
{{ Input::get('tags') }}
{{{ Input::get('tags') }}}
</div>
@endif
</div>
Expand All @@ -28,4 +28,4 @@
</div>
@endif
</section>
@stop
@stop
4 changes: 2 additions & 2 deletions app/views/forum/_index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<h1>Forum</h1>

@if(Input::has('tags'))
<div class="tags">Threads tagged with {{ Input::get('tags') }}.</div>
<div class="tags">Threads tagged with {{{ Input::get('tags') }}}.</div>
@else
<div class="tags">All threads</div>
@endif
Expand All @@ -26,4 +26,4 @@
</div>
@endif
</section>
@stop
@stop
4 changes: 2 additions & 2 deletions app/views/forum/threads/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{{-- Display select tags --}}
@if (Input::get('tags', null))
<div class="tags">
{{ Input::get('tags') }}
{{{ Input::get('tags') }}}
</div>
@endif
<a class="button" href="{{ action('ForumThreadsController@getCreateThread') }}">Create Thread</a>
Expand All @@ -34,7 +34,7 @@
@if (! $threads->count())
<div class="empty-state">
@if (Input::get('tags'))
<h3>No threads found that are tagged with {{ Input::get('tags') }}</h3>
<h3>No threads found that are tagged with {{{ Input::get('tags') }}}</h3>
@else
<h3>No threads found.</h3>
@endif
Expand Down