4
You would need to make the following modification.
old version of news module
file: news/index.php
$story['posttime'] = formatTimestamp($sarray[$i]->published());
change to
$story['posttime'] = formatTimestamp($sarray[$i]->published(), 's');
New version of news module
file: news/class/class.newsstory.php
locate under function prepare2show()
$story['posttime'] = formatTimestamp($story['posttimestamp']);
change to
$story['posttime'] = formatTimestamp($story['posttimestamp'], 's');
Back up your file first before you edit the file. You could alway revert back the original file if you were to make a mistake.
[edit] well, I was a bit late in reply
[/edit]