Browse Source

fixed bug in controller filter method.

Taylor Otwell 13 years ago
parent
commit
dcc334b617
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/controller.php

+ 1 - 1
laravel/routing/controller.php

@@ -169,7 +169,7 @@ abstract class Controller {
 	{
 		$this->filters[$name][] = new Filter_Collection($name, $filters);
 
-		return $this->filters[$name][count($this->filters) - 1];
+		return $this->filters[$name][count($this->filters[$name]) - 1];
 	}
 
 	/**