Quote:
Originally Posted by djwins
Jason, I checked this on your forums and you have the same issue there. At a quick glance it might look like it is working properly, but it is definitely not.
If you select to view feedback from "From Buyers - From Sellers - From Trades - Left for Others". and then click on a page number to view, it will take you to the "All Feedback Received" section, no matter which of the above sections you have selected. It will take you to the proper page number, but it will be in "All Feedback Received" section, not the section that you actually selected.
For a quick example, check this guy's "Left for Others" feedback and then click on page #2
http://forums.extremeoverclocking.com/itrader.php?u=2416
You will notice that you are now looking at page #2 of his "All Feedback Received" section.
|
I installed this to take a look at it and noticed the same issue with pagination.
It looks like an easy fix. If you notice in the URL, it should be something like this:
itrader.php?u=4&iv=3&page=2&pp=15
On the pages where the error occurs, the url looks like this:
itrader.php?u=4&v=3&page=2&pp=15
Notice the missing "i" in "iv=3".
To fix this, open itrader.php and on line 124 replace this:
Code:
$pagenav = construct_page_nav($viewuser['pagenumber'], $viewuser['perpage'], $countposts['total'], "itrader.php?" . $vbulletin->session->vars['sessionurl'] . "u=" . $userinfo['userid'] . ($viewuser['viewtype'] ? "&v=" . $viewuser['viewtype'] : ''),(!empty($viewuser['perpage']) ? "&pp=" . $viewuser['perpage'] : ""));
with this:
Code:
$pagenav = construct_page_nav($viewuser['pagenumber'], $viewuser['perpage'], $countposts['total'], "itrader.php?" . $vbulletin->session->vars['sessionurl'] . "u=" . $userinfo['userid'] . ($viewuser['viewtype'] ? "&iv=" . $viewuser['viewtype'] : ''),(!empty($viewuser['perpage']) ? "&pp=" . $viewuser['perpage'] : ""));
That fixed it for me. Hope it helps.