mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
优化ThinkPHP默认跳转模板
This commit is contained in:
@@ -20,16 +20,16 @@
|
||||
<?php switch ($code) {?>
|
||||
<?php case 1:?>
|
||||
<h1>:)</h1>
|
||||
<p class="success"><?php echo(strip_tags($msg));?></p>
|
||||
<p class="success"><?php echo(htmlentities(strip_tags($msg)));?></p>
|
||||
<?php break;?>
|
||||
<?php case 0:?>
|
||||
<h1>:(</h1>
|
||||
<p class="error"><?php echo(strip_tags($msg));?></p>
|
||||
<p class="error"><?php echo(htmlentities(strip_tags($msg)));?></p>
|
||||
<?php break;?>
|
||||
<?php } ?>
|
||||
<p class="detail"></p>
|
||||
<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>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
|
||||
Reference in New Issue
Block a user