From: Evan Prodromou <evan@controlyourself.ca>
Date: Thu, 15 Jan 2009 20:27:33 +0000 (+0000)
Subject: Fix site notice
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=443e4a48c7b778dea499e88df14ba1b18ea533db;p=quix0rs-gnu-social.git

Fix site notice
---

diff --git a/lib/action.php b/lib/action.php
index fd9d276ac6..097b0d92e7 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -265,14 +265,16 @@ class Action extends HTMLOutputter // lawsuit
     // Revist. Should probably do an hAtom pattern here
     function showSiteNotice()
     {
-        $this->elementStart('dl', array('id' => 'site_notice',
-                                        'class' => 'system_notice'));
-        $this->element('dt', null, _('Site notice'));
-        $this->elementStart('dd', null);
-        // Output a bunch of paragraphs here
-        $this->elementEnd('dd');
-    }
-
+	$text = common_config('site', 'notice');
+	if ($text) {
+	    $this->elementStart('dl', array('id' => 'site_notice',
+					    'class' => 'system_notice'));
+	    $this->element('dt', null, _('Site notice'));
+	    $this->element('dd', null, $text);
+	    $this->elementEnd('dl');
+	}
+    }
+    
     // MAY overload if no notice form needed... or direct message box????
 
     function showNoticeForm()