From 788d95a24e5b3ce0091b44d721d587fa7a89f452 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Fri, 17 Oct 2008 04:24:01 +0000 Subject: Fixed bug 4775. The constant AMP was undefined... this was a copy/past from EE code, where AMP exists. --- system/libraries/Pagination.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries/Pagination.php') diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index 4206f4e72..5435f42da 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -172,7 +172,7 @@ class CI_Pagination { // string. If post, add a trailing slash to the base URL if needed if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE) { - $this->base_url = rtrim($this->base_url).AMP.$this->query_string_segment.'='; + $this->base_url = rtrim($this->base_url).'&'.$this->query_string_segment.'='; } else { -- cgit v1.2.3-24-g4f1b