Searched this thread for this but couldn't find anything.
The gifts in the post bit are showing the oldest gifts and not the newest.
I wan't for it to show the latest gifts received in the postbit.
I tried to change vbplaza_postbit_imicons.php -
From
Code:
// get all of the gifts for this user from the database
if ($gifts = $vbulletin->db->query_read("
SELECT * FROM " . TABLE_PREFIX . "vbp_gift
WHERE touserid = '" . $userinfo['userid'] . "'
ORDER BY giftid DESC
To
Code:
// get all of the gifts for this user from the database
if ($gifts = $vbulletin->db->query_read("
SELECT * FROM " . TABLE_PREFIX . "vbp_gift
WHERE touserid = '" . $userinfo['userid'] . "'
ORDER BY giftid ASC
After I do this It orders them from 1st to Last in the user cp but not in the postbit.
The regular behaviour is First to last in Postbit and Last to First in User CP.
Any Help?