got rid of URI class and brought URI determination back to into request class.

This commit is contained in:
Taylor Otwell
2011-10-29 23:17:47 -05:00
parent ef9e4dfd61
commit 75ce8796d7
6 changed files with 32 additions and 107 deletions

View File

@@ -82,7 +82,7 @@ class Form {
*/
protected static function action($action, $https)
{
return HTML::entities(URL::to(((is_null($action)) ? Request::uri()->get() : $action), $https));
return HTML::entities(URL::to(((is_null($action)) ? Request::uri() : $action), $https));
}
/**