MyBB Community Forums

Full Version: logoutkey?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need use logoutkey var. I can't find it in mybb_user (database). Where is it?
logoutkey=md5(loginkey)
mybb->user['logoutkey']

( I think )

I use the integrator's logout function.
http://phpdave.com/MyBBIntegrator/Coding...ion_logout
mybb->user['logoutkey'] or

md5(mybb->user['loginkey'])
(Because you can find loginkey is value of the field in talbe mybb_users, where mybb->user['logoutkey'] var can't use)

thank you