From 18593afee718b086f953edc32d001f6542eec744 Mon Sep 17 00:00:00 2001
From: Sarven Capadisli <csarven@plantard.controlezvous.ca>
Date: Sun, 1 Feb 2009 23:37:54 +0000
Subject: [PATCH] If user is not logged in, then notice-options container
 shouldn't be outputted.

---
 lib/noticelist.php | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/lib/noticelist.php b/lib/noticelist.php
index 7c88c33cc4..3ef6691afa 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -203,11 +203,14 @@ class NoticeListItem extends Widget
 
     function showNoticeOptions()
     {
-        $this->out->elementStart('div', 'notice-options');
-        $this->showFaveForm();
-        $this->showReplyLink();
-        $this->showDeleteLink();
-        $this->out->elementEnd('div');
+        $user = common_current_user();
+        if ($user) {
+            $this->out->elementStart('div', 'notice-options');
+            $this->showFaveForm();
+            $this->showReplyLink();
+            $this->showDeleteLink();
+            $this->out->elementEnd('div');
+        }
     }
 
     /**
-- 
2.39.5