Fixed a minor problem with the
php script I released a few days ago. This is from the readme:
Version 1.0.1
This version fixes a small problem where the current pagenumber wasn't shown correctly in the header, ie.:
13 newsitems found. Page
1 of
2.
The page
x of
y wasn't shown correctly. It is fixed now, silly mistake, if you don't feel like downoading again just look for the commented out line
//$page_num = $cur_page + 1;// page number counter
in index.php and remove the first set of comment markers so the line will read:
$page_num = $cur_page + 1;// page number counter
Sorry for the mistake.