MyBB Community Forums

Full Version: Need one help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi,

I'm using a plugin called Important Sharing to Forum (http://mods.mybb.com/view/important-sharing-to-forum) but unfortunately this plugin doesn't have option to block guest view.

Is their any way to prevent the guest to view this plugin? Sorry i don't have much experience in coding. Some one please help me solve this issue

Thanks in advance
Open plugin file and find;
eval("\$lshares = \"".$templates->get("lshares")."\";");
and Replace it with;
if ($mybb->user['uid'] != "0")
{
   eval("\$lshares = \"".$templates->get("lshares")."\";");
}
woooww.. that was so fast bro. Thanks a million and its worked