rss/atom act에 대해서 SSO 동작하지 않도록 수정 (가상사이트 사용시 redirect로 인하여 피드리더기들이 오동작하는 문제 발생)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6434 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-28 08:08:42 +00:00
parent 33f6e8f758
commit c922a2ae07

View file

@ -338,7 +338,7 @@
**/
function checkSSO() {
// GET 접속이 아니거나 설치가 안되어 있으면 패스
if(Context::getRequestMethod()!='GET' || !Context::isInstalled()) return true;
if(Context::getRequestMethod()!='GET' || !Context::isInstalled() || in_array(Context::get('act'),array('rss','atom'))) return true;
// DB info에 설정된 Default URL이 없다면 무조건 무사통과
$default_url = trim($this->db_info->default_url);