PHP-Pagination icon indicating copy to clipboard operation
PHP-Pagination copied to clipboard

Duplicated code in render.inc.php

Open jeff1985 opened this issue 7 years ago • 2 comments

Could you explain this lines, please?

$href = preg_replace(
        array('/=$/', '/=&/'),
        array('', '&'),
        $href
);

I have found that those lines are used multiple times in render.inc.php but not sure why you need this and what this does?

jeff1985 avatar Feb 12 '17 21:02 jeff1985

I actually can't remember. It's been a few years. I'd log out the $href value before and after that call and see what you notice.

onassar avatar Feb 13 '17 00:02 onassar

In render.inc.php

// if there are pages to be shown if ( $pages > 1 ) {

Is this "1" should be "0", I change it to 0 and it works

Nick-Hopps avatar Jul 08 '17 07:07 Nick-Hopps