From 1a7fd6d360fe5cb516a9b3faca12abd0458ff210 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 22 Aug 2011 23:06:53 -0500 Subject: [PATCH] removed extra space from form class. --- laravel/form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/form.php b/laravel/form.php index 912a4630..c53486fe 100644 --- a/laravel/form.php +++ b/laravel/form.php @@ -17,7 +17,7 @@ class Form { * @param array $attributes * @param bool $https * @return string - */ + */ public static function open($action = null, $method = 'POST', $attributes = array(), $https = false) { $attributes['action'] = HTML::entities(URL::to(((is_null($action)) ? Request::uri() : $action), $https));