diff --git a/laravel/routing/filter.php b/laravel/routing/filter.php index 2bde4e22..a3d4acb7 100644 --- a/laravel/routing/filter.php +++ b/laravel/routing/filter.php @@ -216,7 +216,7 @@ public function only($methods) */ public function on($methods) { - $methos = (count(func_get_args()) > 1) ? func_get_args() : (array) $methods; + $methods = (count(func_get_args()) > 1) ? func_get_args() : (array) $methods; foreach ($methods as $method) { diff --git a/public/index.php b/public/index.php index 06ccc2b4..09c82136 100644 --- a/public/index.php +++ b/public/index.php @@ -3,7 +3,7 @@ * Laravel - A clean and classy framework for PHP web development. * * @package Laravel - * @version 2.0.0 + * @version 2.0.1 * @author Taylor Otwell * @link http://laravel.com */