Just for the hell of it..
In INDEX.PHP:
Find:
PHP Code:
// ### WELCOME MESSAGE #################################################
Add ABOVE:
PHP Code:
// ### QUOTEIT #########################################################
if ($vboptions['showquote'])
{
$result_quote = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "quotes ORDER BY rand() LIMIT 1
");
while ($quote = $DB_site->fetch_Array($result_quote)) {
$randomquote[quoteid] = $quote[quoteid];
$randomquote[quote] = $quote[quote];
$randomquote[author] = $quote[author];
$randomquote[userid] = $quote[userid];
$randomquote[approved] = $quote[approved];
}
$DB_site->free_result($result_quote);
eval('$showrandomquote .= "' . fetch_template('randomquote') . '";');
}