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.

27 lines
722 B

  1. <?php
  2. if ($_GET['mode'] == 'admin')
  3. require_once('./templates/admin/overall_header.tpl.php');
  4. else
  5. require_once('./templates/overall_header.tpl.php');
  6. ?>
  7. <?php if ($this->TPL['url'] != '') { ?>
  8. <meta http-equiv="refresh" content="<?php echo $this->TPL['timeout']; ?>; url=<?php echo $this->TPL['url']; ?>">
  9. <?php } ?>
  10. <div id="content">
  11. <br>
  12. <div class="forum_table">
  13. <div class="row">
  14. <div class="hc1 hc4">Forum message</div>
  15. </div>
  16. <div class="row">
  17. <div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
  18. <?php echo $this->TPL['message']; ?>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. <?php require_once('./templates/overall_footer.tpl.php'); ?>