From e8b05a76422612cf0b52dfa66beffa799813fb06 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Mon, 31 Oct 2016 16:25:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9BRoute=E7=B1=BB=E7=9A=84parseR?= =?UTF-8?q?ule=E6=96=B9=E6=B3=95=20=E8=B7=AF=E7=94=B1=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=8F=98=E9=87=8F=E6=9B=BF=E6=8D=A2=E4=B8=8D?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8E=BB=E9=99=A4=E8=B7=AF=E7=94=B1=E5=8F=98?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/Route.php | 1 - 1 file changed, 1 deletion(-) diff --git a/library/think/Route.php b/library/think/Route.php index ccadee80..7c6d18ce 100644 --- a/library/think/Route.php +++ b/library/think/Route.php @@ -1400,7 +1400,6 @@ class Route foreach ($matches as $key => $val) { if (false !== strpos($route, ':' . $key)) { $route = str_replace(':' . $key, $val, $route); - unset($matches[$key]); } } }