Changeset 1419 for trunk/system/libraries/Pagination.php
- Timestamp:
- 12/04/2007 08:17:52 PM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Pagination.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Pagination.php
r1402 r1419 93 93 } 94 94 95 // Create a generic base_url with {page} placeholder95 // Create a generic base_url with {page} and {query_string} placeholders 96 96 $this->base_url[$this->uri_segment - 1] = '{page}'; 97 $this->base_url = url::site(implode('/', $this->base_url)) ;97 $this->base_url = url::site(implode('/', $this->base_url)).Router::$query_string; 98 98 } 99 99
