diff --git a/checkin_notes b/checkin_notes
index bf258ae46eb8cdc80858d30fad16ad59b7d71fdf..3c49eff3c572452940cdb8809ba1ef3db6df03dd 100644
--- a/checkin_notes
+++ b/checkin_notes
@@ -3455,3 +3455,13 @@ Rom    10 May 2010
     
     client/
         main.cpp
+
+Rytis  11 May 2010
+    - user web: use full output transform for frontpage news posts (to handle
+        newlines and other related stuff).
+    - user web: add a warning in case admin hasn't changed show_news() call to
+        the new format.
+
+    html/inc/
+        news.inc
+
diff --git a/html/inc/news.inc b/html/inc/news.inc
index 7e6499e4127ff2e44b67bb7310c12da129eade76..112b1416519380f91c5bd54cdc5c01d90ceda448 100644
--- a/html/inc/news.inc
+++ b/html/inc/news.inc
@@ -26,10 +26,10 @@ function news_item($date, $title, $post) {
     $d = time_str($date);
     if (is_string($post)) {
         $forum_link = false;
-        $text = bb2html($post);
+        $text = output_transform($post);
     } else {
         $forum_link = true;
-        $text = bb2html($post->content);
+        $text = output_transform($post->content);
     }
     echo "
         <span class=news_content>$text</span>
@@ -63,7 +63,13 @@ function show_news($start, $count) {
         ";
         return;
     }
-
+    
+    if (is_array($start)) {
+        echo "You have not changed show_news() to use 0 instead of
+            deprecated \$project_news as the first param.";
+        return;
+    }
+    
     $lim = "";
     if ($start) {
         if ($count) {