diff --git a/public/index.php b/public/index.php index 5cc31efc..e81191a0 100644 --- a/public/index.php +++ b/public/index.php @@ -3,7 +3,7 @@ * Laravel - A clean and classy framework for PHP web development. * * @package Laravel - * @version 1.4.0 + * @version 1.4.1 * @author Taylor Otwell * @link http://laravel.com */ diff --git a/system/routing/loader.php b/system/routing/loader.php index ac271810..b1c502a2 100644 --- a/system/routing/loader.php +++ b/system/routing/loader.php @@ -24,6 +24,8 @@ public static function load($uri) if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT)) { $routes = require $path; + + break; } }