주제: (rc1 버전) 관리자 로그인에서 이메일 저장 문제발생
/blog/login/index.php
64번째줄에..
else {
header("Location: {$_POST['requestURI']}");
<!-- 추가 -->
if(empty($_POST['save']))
setcookie('TSSESSION_LOGINID','',time()-31536000,$service['path'].'/',$service['domain']);
else
setcookie('TSSESSION_LOGINID',$loginid,time()+31536000,$service['path'].'/',$service['domain']);
<!-- 추가 -->
}
위와 같이하니까 잘되더라구요...
맞게했는지 한번 봐주실래요 ..?