removed extra space from form class.
This commit is contained in:
parent
b5de50fab9
commit
1a7fd6d360
|
@ -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));
|
||||||
|
|
Loading…
Reference in New Issue