Added date to newsfeed

This commit is contained in:
BNoiZe
2013-12-04 16:55:08 +01:00
parent 47b1675dea
commit 0fc77dddd6
2 changed files with 7 additions and 2 deletions

View File

@@ -52,9 +52,10 @@ if ($action == "newsfeed") {
$title = (string)$item->title;
$link = (string)$item->link;
$date = date("D, j. F Y, G:i", strtotime($item->pubDate));
$content = preg_replace("/[\r\n]+/", "", strip_tags($item->description));
echo "<div class=\"newsitem\"><a href=\"" . $link . "\" target=\"_blank\"><b>" . $title . "</b><br />" . $content . "</a></div>";
echo "<div class=\"newsitem\"><a href=\"" . $link . "\" target=\"_blank\"><b>" . $title . "</b><br /><small>" . $date . "</small><br />" . $content . "</a></div>";
}
} else {
echo "";