From 805f010ba11729ca472a7420246af94963d0dbd0 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 7 May 2004 22:17:34 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3361 --- html/inc/util.inc | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/html/inc/util.inc b/html/inc/util.inc index b503bab19c..3f815dc4ef 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -125,9 +125,13 @@ function write_fd($fd, $str) { function page_head($title, $user=null, $fd=null) { $styleSheet = URL_BASE . STYLESHEET; - write_fd($fd, "$title\n"); - write_fd($fd, ""); - write_fd($fd, "\n\n"); + write_fd($fd, + "$title + + + + " + ); project_banner($user, $fd); } @@ -447,4 +451,12 @@ function host_link($hostid) { } } +function news_item($date, $text) { + echo "$date +
+ $text +

+ "; +} + ?>