로그아웃시에 session_destroy() 함수로 세션 파기하도록 추가. - 럭스님 의견

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3600 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-28 01:48:40 +00:00
parent b1b242f599
commit f55bab7222

View file

@ -1579,6 +1579,7 @@
foreach($_SESSION as $key => $val) {
$_SESSION[$key] = '';
}
session_destroy();
}
}
?>