Shade- / MyFacebook-Connect

A plugin to integrate Facebook with MyBB, letting users login and register through Facebook.
27 stars 24 forks source link

hidemail is not enabled properly #7

Closed NewEraCracker closed 11 years ago

NewEraCracker commented 11 years ago

File: inc/plugins/myfbconnect.php

Line:

"hideemail" => 1,

Unfortunately that doesn't work as MyBB (at least 1.6.10) doesn't fetch that data from $user["hideemail"] but fetches it from $user["options"]["hideemail"],

Fix is to change that line to:

"options" => array("hideemail" => 1),

Regards, NewEraCracker

Shade- commented 11 years ago

Thank you for your suggestion. I've added the hideemail option in a hurry and assumed it was built like every other field but evidently I was wrong. Will fix asap.