A new, object-oriented, better vesion of μForum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
722 B

<?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'); ?>