Skip to content

Commit 3ab171a

Browse files
Update index.blade.php
Sanitize input parameter "tags"
1 parent e0e9b8b commit 3ab171a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/articles/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{{-- Display select tags --}}
1111
@if(Input::get('tags'))
1212
<div class="tags">
13-
{{ Input::get('tags') }}
13+
{{{ Input::get('tags') }}}
1414
</div>
1515
@endif
1616
</div>
@@ -28,4 +28,4 @@
2828
</div>
2929
@endif
3030
</section>
31-
@stop
31+
@stop

0 commit comments

Comments
 (0)