mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Remove double escape of meta tag content
This commit is contained in:
parent
9c92ad1f05
commit
e6bd94855e
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
<meta name="csrf-token" content="{!! \Rhymix\Framework\Session::getGenericToken() !!}" />
|
<meta name="csrf-token" content="{!! \Rhymix\Framework\Session::getGenericToken() !!}" />
|
||||||
@foreach (Context::getMetaTag() as $val)
|
@foreach (Context::getMetaTag() as $val)
|
||||||
@if ($val['is_before_title'])
|
@if ($val['is_before_title'])
|
||||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{{ $val['content'] }}" />
|
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{!! $val['content'] !!}" />
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
<!-- OTHER HEADERS -->
|
<!-- OTHER HEADERS -->
|
||||||
@foreach (Context::getMetaTag() as $val)
|
@foreach (Context::getMetaTag() as $val)
|
||||||
@if (!$val['is_before_title'])
|
@if (!$val['is_before_title'])
|
||||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{{ $val['content'] }}" />
|
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{!! $val['content'] !!}" />
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
@foreach (Context::getOpenGraphData() as $og_metadata)
|
@foreach (Context::getOpenGraphData() as $og_metadata)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue