In responce to connerhd's post
hmmm, didn't seem to make a differentce, however the 1st code change you suggested changes the formate of the date and time to just numerals, as the last code change you suggested does not, but for some reason its still server time(my server is an hour ahead, said 9:57am)
However, I did notice that my test post in my forums said the time was 2:57am(I never noticed this before, but this is my first time posting in the forums since the nuke conversion). This tells me that there is something else going on :S
oh btw, (off topic) but thanks to you making this miniportal, it allowed me to quickly understand punbb's layout, I like how I can add any function I want to the functions.php, and then call it in any document. Currently I have created headerinclude.php (same code from your index.php)
<?php
define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
$page_title = pun_htmlspecialchars($pun_config['o_board_title']);
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
?>
<div class="block">
<h2><span>
<?
echo $pagetitle
?>
</span></h2>
<div class="box">
<div class="inbox">
and footerinclude.php
</div>
</div>
</div>
<?php
require PUN_ROOT.'footer.php';
This lets me to easily create new "modules" , so for example, one could create a new page called, lol, newpage.php in the root of the punbb installation.
<?
$pagetitle="New Page";
include("headerinclude.php");
echo "here is the main content you would put";
include("footerincluce.php");
?>
I will be adding a opentable and closetable function to the functions.php
or add it to the headerinclude and footerinclude, not sure yet, but this is so that it matches with the rest of the style.
check out a test at http://antix.distortgaming.com/punbb/servers.php
* edited to include div tables to create a block for the new page