Browse Source

Don't throw an exception if a filter is not found.

Taylor Otwell 13 years ago
parent
commit
4326f95997
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/routing/filter.php

+ 1 - 4
system/routing/filter.php

@@ -42,10 +42,7 @@ class Filter {
 	{
 		foreach (explode(', ', $filters) as $filter)
 		{
-			if ( ! isset(static::$filters[$filter]))
-			{
-				throw new \Exception("Route filter [$filter] is not defined.");						
-			}
+			if ( ! isset(static::$filters[$filter])) continue;
 
 			$response = call_user_func_array(static::$filters[$filter], $parameters);