SpInfoBak.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $spid=(int)$_GET['spid'];
  19. //碎片
  20. $spr=$empire->fetch1("select spid,spname,varname,sptype,maxnum,groupid,userclass,username from {$dbtbpre}enewssp where spid='$spid'");
  21. if(!$spr['spid']||$spr[sptype]!=3)
  22. {
  23. printerror('ErrorUrl','');
  24. }
  25. //验证操作权限
  26. CheckDoLevel($lur,$spr[groupid],$spr[userclass],$spr[username]);
  27. $sr=$empire->fetch1("select sid from {$dbtbpre}enewssp_3 where spid='$spid'");
  28. if(!$sr['sid'])
  29. {
  30. printerror('NotRecord','');
  31. }
  32. $sql=$empire->query("select bid,sid,spid,lastuser,lasttime from {$dbtbpre}enewssp_3_bak where sid='".$sr['sid']."' order by bid desc");
  33. ?>
  34. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  35. <html>
  36. <head>
  37. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  38. <title>碎片信息修改记录</title>
  39. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. </head>
  41. <body>
  42. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  43. <tr>
  44. <td height="25">位置:碎片 <b><?=$spr[spname]?></b> 的修改记录</td>
  45. </tr>
  46. </table>
  47. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  48. <tr class="header">
  49. <td width="52%" height="25"> <div align="center">修改时间</div></td>
  50. <td width="29%" height="25"> <div align="center">修改者</div></td>
  51. <td width="19%"><div align="center">还原</div></td>
  52. </tr>
  53. <?php
  54. while($r=$empire->fetch($sql))
  55. {
  56. ?>
  57. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  58. <td height="25"><div align="center">
  59. <?=date("Y-m-d H:i:s",$r[lasttime])?>
  60. </div></td>
  61. <td height="25"><div align="center">
  62. <?=$r[lastuser]?>
  63. </div></td>
  64. <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>
  65. </tr>
  66. <?php
  67. }
  68. ?>
  69. </table>
  70. </body>
  71. </html>
  72. <?php
  73. db_close();
  74. $empire=null;
  75. ?>