가상사이트와 메인사이트간의 SSO 이동시 redire url에 &가 &로 되어 있어 생기는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6424 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-27 07:07:26 +00:00
parent 32508ea820
commit 750503add1

View file

@ -360,7 +360,7 @@
// SSO 결과를 받는 경우 session_name() 세팅
if(Context::get('SSOID')) {
setcookie(session_name(), Context::get('SSOID'), 0, '/');
header("location:".getUrl('SSOID',''));
header("location:".str_replace('&','&',getUrl('SSOID','')));
return false;
// SSO 결과를 요청
} else if($_COOKIE['sso']!=md5(Context::getRequestUri()) && !Context::get('SSOID')) {