Browse Source

fixed old uri ioc container reference.

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

+ 1 - 3
laravel/form.php

@@ -80,9 +80,7 @@ class Form {
 	 */
 	protected static function action($action, $https)
 	{
-		$uri = IoC::container()->core('uri')->get();
-
-		return HTML::entities(URL::to(((is_null($action)) ? $uri : $action), $https));
+		return HTML::entities(URL::to(((is_null($action)) ? URI::get() : $action), $https));
 	}
 
 	/**