From a44ca9d53b9e5dbcd9d142d3e5fc89a6e21b82af Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 13 Oct 2011 21:49:40 -0500 Subject: [PATCH] working on comments. --- laravel/routing/router.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/routing/router.php b/laravel/routing/router.php index 3b0badeb..405a34d8 100644 --- a/laravel/routing/router.php +++ b/laravel/routing/router.php @@ -128,8 +128,8 @@ class Router { foreach ($routes as $keys => $callback) { - // Only check routes that have multiple URIs or wildcards. - // Other routes would have been caught by the check for literal matches. + // Only check routes that have multiple URIs or wildcards since other + // routes would have been caught by the check for literal matches. if (strpos($keys, '(') !== false or strpos($keys, ',') !== false ) { foreach (explode(', ', $keys) as $key)