Jeg har fundet koden i filen /cmsimple/tplfuncs.php fra linje 416, den ser sådan ud:
Code: Select all
function lastupdate($br = null, $hour = null)
{
global $tx, $pth;
$t = $tx['lastupdate']['text'] . ':';
if (!(isset($br))) {
$t .= tag('br');
} else {
$t .= ' ';
}
return $t
. XH_formatDate(
filemtime($pth['file']['content']) + (isset($hour) ? $hour * 3600 : 0)
);
}