<?php
//echo dirname(__FILE__)的值为:C:\wamp\www\dede\dede;
require_once(dirname(__FILE__)."/config.php");
//检查用户的权限,在dede/include/inc_userlogin.php中定义
CheckPurview('sys_Edit');
if(empty($dopost)) $dopost = "";
$configfile = dirname(__FILE__)."/../include/config_hand.php";
//echo $configfile的值为:C:\wamp\www\dede\dede/../include/config_hand.php;
$configfile_bak = dirname(__FILE__)."/../include/config_hand_bak.php";
//echo $configfile_bak的值为:C:\wamp\www\dede\dede/../include/config_hand_bak.php;
//$cft_ver_lang在dede/include/config_base.php中定义
header("Content-Type: text/html; charset={$cfg_ver_lang}");
if(!is_writeable($configfile)){
}
if(empty($gp)) $gp = 1;
//保存更改
if($dopost=="save")
{
}
require_once(dirname(__FILE__)."/templets/sys_info.htm");
//ClearAllLink()在dede/dede/inc/inc_admin_pub.php中定义
ClearAllLink();
?>