5
In "category view" isn't working properly navigating to pages. Maybe I'm wrong, but I think the problem when XoopsPageNav don't get the category id ($cid) as
argument to URL
see veiwcat.php line 138:
$nav = new XoopsPageNav( $photo_small_sum , $num , $pos , 'pos' , "$get_append&num=$num&orderby=$orderby" ) ;
when I added &cid=$cid is work fine:
$nav = new XoopsPageNav( $photo_small_sum , $num , $pos , 'pos' , "$get_append&num=$num&cid=$cid&orderby=$orderby" ) ;
Check it, please.
Thanks.