summaryrefslogtreecommitdiffstats
path: root/system/libraries/Pagination.php
diff options
context:
space:
mode:
authorEric Roberts <eric@cryode.com>2013-01-29 00:45:34 +0100
committerEric Roberts <eric@cryode.com>2013-01-29 00:45:34 +0100
commit9668d1d56d39187aa26f058495ca666e3544cbe2 (patch)
treeaccbc0ae8c0dd9ba90d2e524b6e2f16eb8c56dd2 /system/libraries/Pagination.php
parent9f3a590751da2003698546c205a93fcc9c3325f8 (diff)
Remove spaces from concats.
Signed-off-by: Eric Roberts <eric@cryode.com>
Diffstat (limited to 'system/libraries/Pagination.php')
-rw-r--r--system/libraries/Pagination.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index 3a513a7c1..76754046b 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -408,13 +408,13 @@ class CI_Pagination {
// If we saved any GET items earlier, make sure they're appended.
if ( ! empty($get))
{
- $this->first_url .= $query_string_sep . http_build_query($get);
+ $this->first_url .= $query_string_sep.http_build_query($get);
}
}
// Add the page segment to the end of the query string, where the
// page number will be appended.
- $this->base_url .= $query_string_sep . http_build_query(array_merge($get, array($this->query_string_segment => '')));
+ $this->base_url .= $query_string_sep.http_build_query(array_merge($get, array($this->query_string_segment => '')));
}
else
{
@@ -422,7 +422,7 @@ class CI_Pagination {
// Generate our saved query string to append later after the page number.
if ( ! empty($get))
{
- $query_string = $query_string_sep . http_build_query($get);
+ $query_string = $query_string_sep.http_build_query($get);
$this->suffix .= $query_string;
}
@@ -435,10 +435,10 @@ class CI_Pagination {
if ($this->first_url === '')
{
- $this->first_url = $this->base_url . $query_string;
+ $this->first_url = $this->base_url.$query_string;
}
- $this->base_url = rtrim($this->base_url, '/') . '/';
+ $this->base_url = rtrim($this->base_url, '/').'/';
}
// Determine the current page number.