MyBB Community Forums

Full Version: drop_table error.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried to reinstall a plugin called "Specific forum banning", and I got this error.
Fatal error: Call to a member function drop_table() on a non-object in /home/vhosts/www.mydomain.com/forum/inc/plugins/userbanforum.php on line 69
Any suggestions?
Bug in the plugin. ./inc/plugins/userbanforum.php, find:

function userbanforum_uninstall()
{
	$db->drop_table("forumbans");
}

change to:

function userbanforum_uninstall()
{
	global $db;

	$db->drop_table("forumbans");
}
(2010-07-08, 10:35 PM)MattRogowski Wrote: [ -> ]Bug in the plugin. ./inc/plugins/userbanforum.php, find:

function userbanforum_uninstall()
{
	$db->drop_table("forumbans");
}

change to:

function userbanforum_uninstall()
{
	global $db;

	$db->drop_table("forumbans");
}
Thanks Big Grin