You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.5 KiB
78 lines
2.5 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
$editor=1;
|
|
//验证用户
|
|
$lur=is_login();
|
|
$logininid=$lur['userid'];
|
|
$loginin=$lur['username'];
|
|
$loginrnd=$lur['rnd'];
|
|
$loginlevel=$lur['groupid'];
|
|
$loginadminstyleid=$lur['adminstyleid'];
|
|
//ehash
|
|
$ecms_hashur=hReturnEcmsHashStrAll();
|
|
|
|
$spid=(int)$_GET['spid'];
|
|
//碎片
|
|
$spr=$empire->fetch1("select spid,spname,varname,sptype,maxnum,groupid,userclass,username from {$dbtbpre}enewssp where spid='$spid'");
|
|
if(!$spr['spid']||$spr[sptype]!=3)
|
|
{
|
|
printerror('ErrorUrl','');
|
|
}
|
|
//验证操作权限
|
|
CheckDoLevel($lur,$spr[groupid],$spr[userclass],$spr[username]);
|
|
$sr=$empire->fetch1("select sid from {$dbtbpre}enewssp_3 where spid='$spid'");
|
|
if(!$sr['sid'])
|
|
{
|
|
printerror('NotRecord','');
|
|
}
|
|
$sql=$empire->query("select bid,sid,spid,lastuser,lasttime from {$dbtbpre}enewssp_3_bak where sid='".$sr['sid']."' order by bid desc");
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>碎片信息修改记录</title>
|
|
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td height="25">位置:碎片 <b><?=$spr[spname]?></b> 的修改记录</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<tr class="header">
|
|
<td width="52%" height="25"> <div align="center">修改时间</div></td>
|
|
<td width="29%" height="25"> <div align="center">修改者</div></td>
|
|
<td width="19%"><div align="center">还原</div></td>
|
|
</tr>
|
|
<?php
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
?>
|
|
<tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
|
|
<td height="25"><div align="center">
|
|
<?=date("Y-m-d H:i:s",$r[lasttime])?>
|
|
</div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[lastuser]?>
|
|
</div></td>
|
|
<td><div align="center">[<a href="ListSpInfo.php?enews=SpInfoReBak&spid=<?=$spid?>&sid=<?=$r['sid']?>&bid=<?=$r[bid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要还原?');">还原</a>]</div></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
db_close();
|
|
$empire=null;
|
|
?>
|