#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:
misol 2009-12-30 13:28:45 +00:00
parent 6f40bd03bb
commit aa6dc8d88c

View file

@ -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);
}
}