mohamedbenjelloun / MyProfile

Enhances the default MyBB profile system with a very complete one.
MIT License
13 stars 6 forks source link

Redundant queries for visitors #69

Open Destroy666x opened 8 years ago

Destroy666x commented 8 years ago

https://github.com/medbenji/MyProfile/blob/1bad85e6449347297450574968847f61c527453d/Upload/inc/plugins/myprofile/myprofilevisitors.class.php#L256 - get_user() in a loop, please don't ever do this, this is one of the worst practices in MyBB plugins. 15 latest visitors will generate 14 (15 - $mybb->user) additional queries for absolutely no reasonand you can set more than 15. JOINs exist.