Browse Source

removed extra space from form class.

Taylor Otwell 13 years ago
parent
commit
1a7fd6d360
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/form.php

+ 1 - 1
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));