<?php
|
|
if ($_GET['mode'] == 'admin')
|
|
require_once('./templates/admin/overall_header.tpl.php');
|
|
else
|
|
require_once('./templates/overall_header.tpl.php');
|
|
?>
|
|
|
|
<?php if ($this->TPL['url'] != '') { ?>
|
|
<meta http-equiv="refresh" content="<?php echo $this->TPL['timeout']; ?>; url=<?php echo $this->TPL['url']; ?>">
|
|
<?php } ?>
|
|
|
|
<div id="content">
|
|
<br>
|
|
<div class="forum_table">
|
|
<div class="row">
|
|
<div class="hc1 hc4">Forum message</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
|
|
<?php echo $this->TPL['message']; ?>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once('./templates/overall_footer.tpl.php'); ?>
|