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

@@ -250,7 +250,7 @@ class Paginator {
// We will assume the page links should use HTTPS if the current request
// is also using HTTPS. Since pagination links automatically point to
// the current URI, this makes pretty good sense.
list($uri, $secure) = array(Request::uri()->get(), Request::secure());
list($uri, $secure) = array(Request::uri(), Request::secure());
$appendage = $this->appendage($element, $page);