thats because its a bug in the default_ex template. line 276 in flat.php of the default _ex reads as:
| Code: |
echo '<a href="' . sefRelToAbs(JB_LIVEURLREL . '&func=view&id=' . $leaf->id . $viewstr . '&catid=' . catid) . '">1</a>';
|
if you notice that the url when you click the pagination the catid=0
this means it will just send you to the categories.
i tried editing that line into this:
| Code: |
echo '<a href="' . sefRelToAbs(JB_LIVEURLREL . '&func=view&id=' . $leaf->id . $viewstr . '&catid=' . $leaf->catid) . '">1</a>';
|
the page one works however the page two and page three and so on still results to ZERO in cat id.
for now i would just comment out from line 268 to 308 of that file.
- g