mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
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:
parent
33f6e8f758
commit
c922a2ae07
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue