Browse Source

fixed routing bug.

Taylor Otwell 13 years ago
parent
commit
2bb7125127
2 changed files with 3 additions and 1 deletions
  1. 1 1
      public/index.php
  2. 2 0
      system/routing/loader.php

+ 1 - 1
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
  */

+ 2 - 0
system/routing/loader.php

@@ -24,6 +24,8 @@ class Loader {
 			if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
 			{
 				$routes = require $path;
+
+				break;
 			}
 		}