function construct_page_nav now accepts 5 params, not just 3 as the legacy one
but I don't really know why the phpdoc only states for 3 params:
PHP Code:
// #############################################################################
/**
* Returns the HTML for multi-page navigation - based on code from 3dfrontier.com
*
* @param integer Total number of items found
* @param string Base address for links eg: showthread.php?t=99{&page=4}
* @param string Ending portion of address for links
*
* @return string Page navigation HTML
*/
function construct_page_nav($pagenumber, $perpage, $results, $address, $address2 = '')
1st param: current page number
2st param: number of items per page.
the last 3 params are defined in the phpdoc above, they're just like before.
Please update all the info that users submit so that others only have to look at the fist post so that they can check for what has been changed.