svn path=/trunk/boinc/; revision=19990

This commit is contained in:
David Anderson 2009-12-19 17:52:49 +00:00
parent 9f50df7e3e
commit 88616eb157
1 changed files with 2 additions and 2 deletions

View File

@ -21,12 +21,12 @@ require_once("../project/project.inc");
function news_item($date, $title, $text) { function news_item($date, $title, $text) {
echo "<p>"; echo "<p>";
if ($title) { if ($title) {
echo "<span class=news_title>$title</span>\n"; echo "<span class=news_title>$title</span><br>\n";
} }
$d = time_str($date); $d = time_str($date);
$text = bb2html($text); $text = bb2html($text);
echo " echo "
<br><span class=news_date>$d</span> <span class=news_date>$d</span>
<br><span class=news_content>$text</span> <br><span class=news_content>$text</span>
"; ";
} }