Commit 1a7fd6d3 authored by Taylor Otwell's avatar Taylor Otwell

removed extra space from form class.

parent b5de50fa
...@@ -17,7 +17,7 @@ class Form { ...@@ -17,7 +17,7 @@ class Form {
* @param array $attributes * @param array $attributes
* @param bool $https * @param bool $https
* @return string * @return string
*/ */
public static function open($action = null, $method = 'POST', $attributes = array(), $https = false) 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)); $attributes['action'] = HTML::entities(URL::to(((is_null($action)) ? Request::uri() : $action), $https));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment