This is my revised code, and it seems to work OK. It goes in place of the original global.php edit:
PHP Code:
if ($bbuserinfo['userid'] AND $bbuserinfo['userid'] > 1)
{
$regex = "(profile\.php|usercp\.php)";
if (!eregi($regex, $_SERVER['REQUEST_URI']))
{
$reqfields = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "profilefield WHERE required = 1");
if ($DB_site->num_rows($reqfields))
{
while ($reqfield = $DB_site->fetch_array($reqfields))
{
$fieldname = "field$reqfield[profilefieldid]";
$field = $bbuserinfo["$fieldname"];
if (empty($field))
{
eval('print_output("' . fetch_template('STANDARD_ERROR_PROFILEFIELD') . '");');
die;
}
}
}
}
}
STANDARD_ERROR_PROFILEFIELD is in place of "zzzz_emptyreqfields", I just thought that was a stupid name so I made something more vBish.