Browse Source

fix bug in controller filters.

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

+ 1 - 1
laravel/routing/filter.php

@@ -302,7 +302,7 @@ class Filter_Collection {
 	 */
 	public function on($methods)
 	{
-		$method = array_map('strtolower', (array) $methods);
+		$this->methods = array_map('strtolower', (array) $methods);
 		return $this;
 	}