- Code: Select all
message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?
This is where message_die() was used in page_tail.php:
- Code: Select all
// Start add - Complete banner MOD
if ($banner_show_list)
{
$banner_show_list['0'] = ($banner_show_list) ? ' ':'';
$sql = "UPDATE ".BANNERS_TABLE." SET banner_view=banner_view+1 where banner_id IN ($banner_show_list)";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, "Couldn't update banners data", "", __LINE__, __FILE__, $sql);
}
}
// End add - Complete banner MOD
Is there anyway to fix this? I want my forum footers to show up!

