mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-05 03:22:10 +09:00
Context::getRequestUri()에서 80번 포트에 대한 검사를 !== 로 하여 문제 생김을 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4936 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f25b582aaf
commit
63283eb86c
1 changed files with 1 additions and 1 deletions
|
|
@ -805,7 +805,7 @@
|
|||
$domain = sprintf("%s://%s",$use_ssl?'https':'http',$domain);
|
||||
|
||||
$url_info = parse_url($domain);
|
||||
$url[$ssl_mode] = sprintf("%s://%s%s%s",$url_info['scheme'], $url_info['host'], $_SERVER['SERVER_PORT']!==80?':'.$_SERVER['SERVER_PORT']:'',$url_info['path']);
|
||||
$url[$ssl_mode] = sprintf("%s://%s%s%s",$url_info['scheme'], $url_info['host'], $_SERVER['SERVER_PORT']!=80?':'.$_SERVER['SERVER_PORT']:'',$url_info['path']);
|
||||
|
||||
return $url[$ssl_mode];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue