diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-18 22:28:03 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-18 22:28:03 +0100 |
commit | 311f3e5da52a0d8996f225950483d39b216a338f (patch) | |
tree | 68102ec364bfe0a5e6c5cc468f81492ecce31827 | |
parent | a4f113eef935d8543cb194f8239807112a3b3aaa (diff) | |
parent | 290f58743179c81c099ca02191910374db89846f (diff) |
Merge pull request #2888 from aanbar/develop
Fixed variable scope.
-rw-r--r-- | system/libraries/Pagination.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php index da2fe7400..5b9bfcb5d 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -539,7 +539,7 @@ class CI_Pagination { $attributes = sprintf('%s %s="%d"', $this->_attributes, $this->data_page_attr, 1); $output .= $this->first_tag_open.'<a href="'.$first_url.'"'.$attributes.$this->_attr_rel('start').'>' - .$first_link.'</a>'.$this->first_tag_close; + .$this->first_link.'</a>'.$this->first_tag_close; } // Render the "Previous" link. |