Don't HTML escape custom stylesheet

If you HTML escape the custom stylesheet, you can't have quotes in it.
You need quotes if you want to add something with url('foo') (in a
background-image by exemple).
This commit is contained in:
Luc Didry
2015-06-19 23:07:37 +02:00
parent 05a103c47d
commit 261b38b308

View File

@@ -41,7 +41,7 @@
@if($stylesheet = Setting::get('stylesheet'))
<style type="text/css">
{{ $stylesheet }}
{!! $stylesheet !!}
</style>
@endif