Merge pull request #76 from telchina/fix_chinese_doc_name_issue

fixed the Chinese document name issue
This commit is contained in:
Denis Kisselev 2013-10-03 12:28:17 -07:00
commit 19c53b4acf
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ function url_path() {
}
function url_params() {
$url = get_uri();
$url = rawurldecode(get_uri());
$params = explode('/', trim($url, '/'));
return $params;
}