getRequestUri(): 프로토콜명을 소문자로 리턴하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4110 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
wdlee91 2008-04-16 08:53:43 +00:00
parent 89090a5cb9
commit f4cde76683

View file

@ -636,7 +636,7 @@
$use_ssl = false;
break;
}
return sprintf("%s://%s%s",$use_ssl?'HTTPS':'HTTP',$_SERVER['HTTP_HOST'], getScriptPath());
return sprintf("%s://%s%s",$use_ssl?'https':'http',$_SERVER['HTTP_HOST'], getScriptPath());
}
/**