mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Explicitly declare noescape
This commit is contained in:
parent
56f20e84c0
commit
aac678de48
27 changed files with 33 additions and 33 deletions
|
|
@ -98,7 +98,7 @@
|
|||
<!-- /LNB -->
|
||||
<!-- CONTENT -->
|
||||
<div class="content" id="content">
|
||||
{$content}
|
||||
{$content|noescape}
|
||||
</div>
|
||||
<!-- /CONTENT -->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -138,9 +138,9 @@
|
|||
</section>
|
||||
</div>
|
||||
<div class="layout_content" id="content">
|
||||
{$layout_info->before_content}
|
||||
{$content}
|
||||
{$layout_info->after_content}
|
||||
{$layout_info->before_content|noescape}
|
||||
{$content|noescape}
|
||||
{$layout_info->after_content|noescape}
|
||||
</div>
|
||||
<!--// CONTENT -->
|
||||
<div class="layout_outright" cond="trim($layout_info->right_content)">
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="content">.content{$content}</div>
|
||||
<div class="content">.content{$content|noescape}</div>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="footer">.footer</div>
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@
|
|||
<!-- /LNB -->
|
||||
<!-- CONTENT -->
|
||||
<div class="content" id="content">
|
||||
{$content}
|
||||
{$content|noescape}
|
||||
</div>
|
||||
<!--@if($layout_info->use_demo === 'Y')-->
|
||||
<include target="./demo/welcome_main.html" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue