Browse Source

fix bundle handles greediness.

Taylor Otwell 13 years ago
parent
commit
37c06a5006
1 changed files with 10 additions and 0 deletions
  1. 10 0
      laravel/bundle.php

+ 10 - 0
laravel/bundle.php

@@ -52,6 +52,14 @@ class Bundle {
 		// to the location path for the bundle.
 		// to the location path for the bundle.
 		$config['location'] = path('bundle').rtrim($config['location'], DS).DS;
 		$config['location'] = path('bundle').rtrim($config['location'], DS).DS;
 
 
+		// If the handles clause is set, we will append a trailing slash so
+		// that it is not ultra-greedy. Otherwise, bundles that handle "s"
+		// would handle all bundles that start with "s".
+		if (isset($config['handles']))
+		{
+			$config['handles'] = $config['handles'].'/';
+		}
+
 		static::$bundles[$bundle] = array_merge($defaults, $config);
 		static::$bundles[$bundle] = array_merge($defaults, $config);
 	}
 	}
 
 
@@ -115,6 +123,8 @@ class Bundle {
 	 */
 	 */
 	public static function handles($uri)
 	public static function handles($uri)
 	{
 	{
+		$uri = rtrim($uri, '/').'/';
+
 		foreach (static::$bundles as $key => $value)
 		foreach (static::$bundles as $key => $value)
 		{
 		{
 			if (starts_with($uri, $value['handles'])) return $key;
 			if (starts_with($uri, $value['handles'])) return $key;