Browse Source

Trim line of code in form class.

Taylor Otwell 13 years ago
parent
commit
55379a0adb
1 changed files with 4 additions and 2 deletions
  1. 4 2
      laravel/form.php

+ 4 - 2
laravel/form.php

@@ -87,7 +87,9 @@ class Form {
 	 */
 	protected static function action($action, $https)
 	{
-		return HTML::entities(URL::to(((is_null($action)) ? Request::uri() : $action), $https));
+		$uri = (is_null($action)) ? URI::current() : $action;
+
+		return HTML::entities(URL::to($uri, $https));
 	}
 
 	/**
@@ -540,4 +542,4 @@ class Form {
 		}
 	}
 
-}
+}