From 65137c02b24aee3af89a3e3324fe9962af212771 Mon Sep 17 00:00:00 2001 From: telchina Date: Tue, 10 Sep 2013 11:15:46 +0800 Subject: [PATCH] fixed issue of chinese document name --- libs/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/functions.php b/libs/functions.php index 4fd6849..545e61d 100644 --- a/libs/functions.php +++ b/libs/functions.php @@ -158,7 +158,7 @@ function url_path() { } function url_params() { - $url = get_uri(); + $url = rawurldecode(get_uri()); $params = explode('/', trim($url, '/')); return $params; }