Merge pull request #207 from hainuo/patch-1

修正一处函数名拼写错误
This commit is contained in:
ThinkPHP
2016-07-10 01:17:42 -05:00
committed by GitHub

View File

@@ -199,7 +199,7 @@ class Route
if (is_array($val)) {
$route = $val[0];
$option1 = array_merge($option, $val[1]);
$pattern1 = array_merege($pattern, isset($val[2]) ? $val[2] : []);
$pattern1 = array_merge($pattern, isset($val[2]) ? $val[2] : []);
} else {
$route = $val;
}