This is part of the update to commbull I just posted.
PHP Code:
$doupdate = 0;
$doupdate_type = 0;
$cols = $db->query_read("SHOW COLUMNS FROM ". TABLE_PREFIX ."user ");
while ($columns = mysql_fetch_assoc($cols))
{
if( $columns[Field] == "receivebulletin" )
$doupdate = 1;
if( $columns[Field] == "receivebulletin_type" )
$doupdate_type = 1;
}
$db->free_result($cols);
if( $doupdate == 0 || $doupdate_type == 0 )
doinstall($session[sessionhash]);