I found a bug in the Page-By-Page-Archive addon version 0.6.
On line 313 in the paged_archive.php, there's a missing '.
originally this is line 313:
Quote:
|
$Archive_pages_Links .= "<a href='index.php?x=browse&category=$cat_id& pagenum=$pagecounter>$pagecounter</a> ";
|
replace with:
Quote:
|
$Archive_pages_Links .= "<a href='index.php?x=browse&category=$cat_id& pagenum=$pagecounter'>$pagecounter</a> ";
|