1
This bug probably wouldn't come up with the normal XOOPS site, so I guess I pushed the envelope. I have about 108 categories listed and one of them has about 3000 links in it. When I go to that page the module attempts to display ALL of the pages on the pagenav. That causes the screen to be about 2000+ pixels wide of something of the sort. I looked at the code and I don't think the person who wrote it took into account massive links.
As a quick fix I did something like this:
if( ( $counter % 15 ) == 1 )
$page_nav .= "
";
This causes the pagenav to have a
every 15 page links, which at least keeps it from making the page really . It's cheesy, but it fixed the problem for now. What really needs to be done is to have the pagenav be able to navigate through a page list gracefully. If anyone has a mod like this or knows of an update to the mylinks module I would be interested to hear about it..
eToolMan