Browse Source

fixing route bundle determination.

Taylor Otwell 13 years ago
parent
commit
3dab550681
1 changed files with 3 additions and 8 deletions
  1. 3 8
      laravel/routing/route.php

+ 3 - 8
laravel/routing/route.php

@@ -62,10 +62,9 @@ class Route {
 		$this->uris = array_map(array($this, 'extract'), $uris);
 		$this->uris = array_map(array($this, 'extract'), $uris);
 
 
 		// Determine the bundle in which the route was registered. We will know
 		// Determine the bundle in which the route was registered. We will know
-		// the bundle by the first segment of the route's URI. We need to know
-		// the bundle so we know if we need to run a bundle's global filters
-		// when executing the route.
-		$this->bundle = Bundle::resolve(head(explode('/', $this->uris[0])));
+		// the bundle by feeding the URI into the bundle::handles method, which
+		// will return the bundle assigned to that URI.
+		$this->bundle = Bundle::handles($this->uris[0]);
 
 
 		$this->parameters = array_map('urldecode', $parameters);
 		$this->parameters = array_map('urldecode', $parameters);
 	}
 	}
@@ -147,10 +146,6 @@ class Route {
 	 */
 	 */
 	protected function filters($event)
 	protected function filters($event)
 	{
 	{
-		// Add the global filters to the array. We will also attempt to add
-		// the bundle's global filter as well. However, we'll need to keep
-		// the array unique since the default bundle's global filter will
-		// be the same as the application's global filter.
 		$filters = array_unique(array($event, Bundle::prefix($this->bundle).$event));
 		$filters = array_unique(array($event, Bundle::prefix($this->bundle).$event));
 
 
 		// Next wee will check to see if there are any filters attached
 		// Next wee will check to see if there are any filters attached