Skip to content

Commit e0e9b8b

Browse files
Update _index.blade.php
Sanitize Input::get parameter "tags"
1 parent c326ae4 commit e0e9b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/forum/_index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h1>Forum</h1>
1010

1111
@if(Input::has('tags'))
12-
<div class="tags">Threads tagged with {{ Input::get('tags') }}.</div>
12+
<div class="tags">Threads tagged with {{{ Input::get('tags') }}}.</div>
1313
@else
1414
<div class="tags">All threads</div>
1515
@endif
@@ -26,4 +26,4 @@
2626
</div>
2727
@endif
2828
</section>
29-
@stop
29+
@stop

0 commit comments

Comments
 (0)