mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-18 09:52:17 +09:00
#18576797 가상 사이트 리디렉션 할 때, 주소를 UrlEncode 된 상태로, Utf-8인코딩으로 이동하게 수정.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7088 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6f40bd03bb
commit
aa6dc8d88c
1 changed files with 1 additions and 1 deletions
|
|
@ -823,7 +823,7 @@
|
|||
if(is_null($url)) {
|
||||
$url = Context::getRequestUri();
|
||||
if(count($_GET)) {
|
||||
foreach($_GET as $key => $val) $vars[] = $key.'='.$val;
|
||||
foreach($_GET as $key => $val) $vars[] = $key.'='.urlencode(Context::convertEncodingStr($val));
|
||||
$url .= '?'.implode('&',$vars);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue