Browse Source

break if before filter returns a response.

Taylor Otwell 13 years ago
parent
commit
1a96696046
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/laravel.php

+ 2 - 0
system/laravel.php

@@ -142,6 +142,8 @@ if (ACTIVE_MODULE !== 'application' and file_exists($filters = ACTIVE_MODULE_PAT
 foreach (array('before', ACTIVE_MODULE.'::before') as $filter)
 foreach (array('before', ACTIVE_MODULE.'::before') as $filter)
 {
 {
 	$response = Routing\Filter::call($filter, array(), true);
 	$response = Routing\Filter::call($filter, array(), true);
+
+	if ( ! is_null($response)) break;
 }
 }
 
 
 // --------------------------------------------------------------
 // --------------------------------------------------------------