Open Destroy666x opened 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.
get_user()
$mybb->user
JOIN
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.JOIN
s exist.