diff --git a/app/views/articles/index.blade.php b/app/views/articles/index.blade.php index 85c6d6ca6..267f0c57e 100644 --- a/app/views/articles/index.blade.php +++ b/app/views/articles/index.blade.php @@ -10,7 +10,7 @@ {{-- Display select tags --}} @if(Input::get('tags'))
- {{ Input::get('tags') }} + {{{ Input::get('tags') }}}
@endif @@ -28,4 +28,4 @@ @endif -@stop \ No newline at end of file +@stop diff --git a/app/views/forum/_index.blade.php b/app/views/forum/_index.blade.php index 64d6287cd..31d6ebbee 100644 --- a/app/views/forum/_index.blade.php +++ b/app/views/forum/_index.blade.php @@ -9,7 +9,7 @@

Forum

@if(Input::has('tags')) -
Threads tagged with {{ Input::get('tags') }}.
+
Threads tagged with {{{ Input::get('tags') }}}.
@else
All threads
@endif @@ -26,4 +26,4 @@ @endif -@stop \ No newline at end of file +@stop diff --git a/app/views/forum/threads/index.blade.php b/app/views/forum/threads/index.blade.php index e2b275c31..0d6e31f7c 100644 --- a/app/views/forum/threads/index.blade.php +++ b/app/views/forum/threads/index.blade.php @@ -11,7 +11,7 @@ {{-- Display select tags --}} @if (Input::get('tags', null))
- {{ Input::get('tags') }} + {{{ Input::get('tags') }}}
@endif Create Thread @@ -34,7 +34,7 @@ @if (! $threads->count())
@if (Input::get('tags')) -

No threads found that are tagged with {{ Input::get('tags') }}

+

No threads found that are tagged with {{{ Input::get('tags') }}}

@else

No threads found.

@endif