Did the explode, here is what I have in the global_start plugin:
PHP Code:
$pl9_quoteloc = explode(",", $vbulletin->options['pl9_qloc']);
$quote_sql = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "bfc_quotes WHERE unapproved = 0 ORDER BY RAND() LIMIT 1");
while($quotes = $db->fetch_array($quote_sql))
{
$uname = $quotes['username'];
$quote_text = $quotes['quote'];
eval('$table = "' . fetch_template('bfc_quote_table') . '";');
eval('$stable = "' . fetch_template('bfc_quote_stable') . '";');
eval('$normal = "' . fetch_template('bfc_quote_normal') . '";');
eval('$snormal = "' . fetch_template('bfc_quote_snormal') . '";');
}
eval('$quote = "' . fetch_template('bfc_quote') . '";');
EDIT: Even with the change nothing plus the forum with the id of 1 it goes away on as well.