MyBB Community Forums

Full Version: if on buddy list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone,

Just wanted to know if anyone knew how I could check to see if the user that was logged in, had the user whose profile they were looking at on their buddy list? I want to be able to create an if statement in the template for this.


Basically, If the person A (who is looking at person B's profile page) has person B on his buddy list, then I want to display one image, if he doesn't, i want to display another.

Any way to do this?

Thanks,
Camti.
if ($memprofile['buddylist'] == $mybb->user['uid'])
{
// image 1
}
else
{
image 2
}
Thank you. I shall try this later today.
Camti.