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.
44 lines
1.0 KiB
44 lines
1.0 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();
|
|
hCheckEcmsRHash();
|
|
//验证权限
|
|
CheckLevel($logininid,$loginin,$classid,"searchall");
|
|
|
|
@set_time_limit(0);
|
|
|
|
require("../../data/dbcache/class.php");
|
|
require "../".LoadLang("pub/fun.php");
|
|
require('../../class/schallfun.php');
|
|
//编码
|
|
$iconv='';
|
|
$char='';
|
|
$targetchar='';
|
|
if($ecms_config['sets']['pagechar']!='gb2312')
|
|
{
|
|
include_once(ECMS_PATH.'e/class/doiconv.php');
|
|
$iconv=new Chinese('../');
|
|
$char=$ecms_config['sets']['pagechar']=='big5'?'BIG5':'UTF8';
|
|
$targetchar='GB2312';
|
|
}
|
|
$lid=$_GET['lid'];
|
|
$start=$_GET['start'];
|
|
$addgethtmlpath="../";
|
|
LoadSearchAll($lid,$start,$logininid,$loginin);
|
|
db_close();
|
|
$empire=null;
|
|
?>
|