mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-06 15:02:47 +08:00
优化ThinkPHP默认跳转模板
This commit is contained in:
@@ -20,16 +20,16 @@
|
|||||||
<?php switch ($code) {?>
|
<?php switch ($code) {?>
|
||||||
<?php case 1:?>
|
<?php case 1:?>
|
||||||
<h1>:)</h1>
|
<h1>:)</h1>
|
||||||
<p class="success"><?php echo(strip_tags($msg));?></p>
|
<p class="success"><?php echo(htmlentities(strip_tags($msg)));?></p>
|
||||||
<?php break;?>
|
<?php break;?>
|
||||||
<?php case 0:?>
|
<?php case 0:?>
|
||||||
<h1>:(</h1>
|
<h1>:(</h1>
|
||||||
<p class="error"><?php echo(strip_tags($msg));?></p>
|
<p class="error"><?php echo(htmlentities(strip_tags($msg)));?></p>
|
||||||
<?php break;?>
|
<?php break;?>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<p class="detail"></p>
|
<p class="detail"></p>
|
||||||
<p class="jump">
|
<p class="jump">
|
||||||
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
|
页面自动 <a id="href" href="<?php echo(htmlentities($url));?>">跳转</a> 等待时间: <b id="wait"><?php echo(htmlentities($wait));?></b>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|||||||
Reference in New Issue
Block a user