Pagination suffix & reuse_query_string problem |
And once again, depending on these lines from manual if I will set $config['reuse_query_string'] = TRUE:
Quote:By default your Query String arguments (nothing to do with other query string options) will be ignored. Setting this config to TRUE will add existing query string arguments back into the URL after the URI segment and before the suffix.: taken from: http://www.codeigniter.com/user_guide/li...ation.html the $config['suffix'] should be added after QUERY_STRING, but it doesn't. Let's take a look on 474 line from system/libraries/Pagination.php: Code: // Standard segment mode. And we will see $this->suffix .= $query_string; instead of $this->suffix = $query_string . $this->suffix; Is that a bug, or I simply don't understand this thing? Could somebody help me, please? |
Messages In This Thread |
Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 11:55 AM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-07-2016, 12:39 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 12:50 PM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-07-2016, 01:14 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 01:50 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-09-2016, 04:29 PM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-09-2016, 04:50 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-09-2016, 05:43 PM
RE: Pagination suffix & reuse_query_string problem - by Diederik - 09-09-2016, 07:30 PM
|