楼主的 清除cookie有点错误
还需要修改profile.php
找到(就在最底部)
搜索:
?>
上面加入:
if($action == 'clearcookies') {
foreach ($_COOKIE as $c_key => $c_val){
setcookie($c_key, '', $timestamp - 86400 * 365, $db_ckpath, $db_ckdomain);
}
refreshto("index.php",'operate_success');
}
清除cookie就完整了
还有就是footer 跟官方有区别
[ 此贴被一只船的港在2008-03-06 18:53重新编辑 ]