diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-17 16:29:23 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-17 16:29:23 +0100 |
commit | e9c8c8988da2e6903b22e5444a2c9ddbe30a39ec (patch) | |
tree | 1875ee69790723729ceec0f56b13653586739de5 | |
parent | 53d5ee6c6e595bc80851bf933215216610c052a7 (diff) |
Fix #2884
-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 f2d38a852..99552ec0d 100644 --- a/system/libraries/Pagination.php +++ b/system/libraries/Pagination.php @@ -344,7 +344,7 @@ class CI_Pagination { foreach ($params as $key => $val) { - if (property_exists($this, $this->$key)) + if (property_exists($this, $key)) { $this->$key = $val; } |