<?php
/*
Copyright (C) 2009 DantoBB Team
http://www.dantobb.com
*/
/**
* Footer file
*
* Does some stuff at the end of the processing.
*
* @author DantoBB Team
* @link http://www.dantobb.com
* @license GPL-2
* @version $Revision: 1.0 $
* @copyright Copyright (C) 2009 DantoBB Team
* @package DantoBB
* @subpackage Core
*/
//
// Die when called directly in browser
//
if ( !defined('INCLUDED') )
exit();
//
// Page footer
//
$template->parse('normal_footer', 'global');
//
// Output the page body
//
$template->body();
//
// Disconnect database connection
//
$db->disconnect();
?>