Browse Source

Make RoutingFilter apply after Asset and Cache filters.

This allows cached/asset requests to not hit the router.
mark_story 12 years ago
parent
commit
6fc2fd188e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Routing/Filter/RoutingFilter.php

+ 1 - 1
src/Routing/Filter/RoutingFilter.php

@@ -34,7 +34,7 @@ class RoutingFilter extends DispatcherFilter {
  *
  * @var int
  */
-	protected $_priority = -10;
+	protected $_priority = 10;
 
 /**
  * Applies Routing and additionalParameters to the request to be dispatched.