- Bug #8898 by Morbus: fixed incorrect date being displayed in the forum overview when a topic has no comments yet.

4.5.x
Dries Buytaert 2004-06-29 20:35:58 +00:00
parent 8edcb47063
commit b284477713
2 changed files with 2 additions and 2 deletions

View File

@ -316,7 +316,7 @@ function _forum_last_reply($nid) {
}
function _forum_format($topic) {
if ($topic) {
if ($topic && $topic->timestamp) {
return t('%time ago<br />by %author', array('%time' => format_interval(time() - $topic->timestamp), '%author' => format_name($topic)));
}
else {

View File

@ -316,7 +316,7 @@ function _forum_last_reply($nid) {
}
function _forum_format($topic) {
if ($topic) {
if ($topic && $topic->timestamp) {
return t('%time ago<br />by %author', array('%time' => format_interval(time() - $topic->timestamp), '%author' => format_name($topic)));
}
else {