Here's the code from that line
PHP Code:
$msg = $ibforums->lang[ $error['MSG'] ];
if ($error['EXTRA'])
{
if (preg_match("/<#EXTRA#>/", $error['EXTRA'])
{
$msg = preg_replace( "/<#EXTRA#>/", $error['EXTRA'], $msg );
}
else
{
$msg .= "<br /><br />".$error['EXTRA'];
}
}
$html = $skin_universal->Error( $msg, $em_1, $em_2);
//-----------------------------------------
// If we're a guest, show the log in box..
//-----------------------------------------