Forums
Home / Plugin: Category pagination fix / Still working in 4.1
(@balbert)
10 years, 2 months ago
This seems to still work and unfortunately is still needed in 4.1
fyi… i updated the plugin for deprecated split(). //list($delim, $page_index) = split(‘/’, $query_string[‘page’]); list($delim, $page_index) = explode(‘/’, $query_string[‘page’]);
according to php.net, split is deprecated thus you might run into issues with newer php server installs.