Therer was an apparent restructuring of the file class_dbalter.php changing the class and functions used in Kirby's uninstall example.
fetch_table_info has now changed to fetchTableInfo and drop_field has changed to dropField and lastly table_field_data has changed to fetchFieldInfo.
new coding
PHP Code:
unset($vbulletin->bf_misc_customadminperms['canadminmyhack']);
if (empty($vbulletin->bf_misc_customadminperms))
{
require_once(DIR . '/includes/class_dbalter.php');
$dbalter = new vB_Database_Alter_MySQL($db);
$dbalter->fetchTableInfo('administrator');
if (!$dbalter->fetchFieldInfo['customadminperms'])
{
$dbalter->dropField('customadminperms');
}
}
Lastly TABLE_PREFIX is no longer needed...