Top 10 Bug Fix to Version 2.1
Date: Friday, June 27 @ 15:32:44 CEST
Topic: Bug Fixes


Hi folks, I noticed a light bug today when adding people to my buddy list. I noticed I was moving up the food chain and thought that was odd. So I took a look at the code again and noticed it should really look like this...

select COUNT(b.user_id) as uid, u.username from nuke_users u, nuke_bbbuddies b where u.user_id=b.buddy_id group by b.buddy_id order by uid DESC limit 10;

Instead of...

select COUNT(b.user_id) as uid, u.username from nuke_users u, nuke_bbbuddies b where u.user_id=b.user_id group by b.user_id order by uid DESC limit 10;

So please, make the correction by finding the second select statement and replacing it with the first. This fix will be in the next release.

Thanks. This will now display the top buddies correctly.





This article comes from NukeCops
http://www.nukecops.com

The URL for this story is:
http://www.nukecops.com/modules.php?name=News&file=article&sid=264