简化Route类的parseUrl方法 取消url_parse_type参数

This commit is contained in:
thinkphp
2016-06-27 12:31:59 +08:00
parent 66607ae180
commit 32c5e00bf4
3 changed files with 4 additions and 8 deletions

View File

@@ -468,7 +468,7 @@ class App
}
if (false === $result) {
// 路由无效 解析模块/控制器/操作/参数... 支持控制器自动搜索
$result = Route::parseUrl($path, $depr, $config['controller_auto_search'], $config['url_param_type'], $config['url_parse_type']);
$result = Route::parseUrl($path, $depr, $config['controller_auto_search']);
}
return $result;
}