diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 171bea17c..22425e682 100644 --- a/lib/action.php +++ b/lib/action.php @@ -373,7 +373,11 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('div', array('id' => 'header')); $this->showLogo(); $this->showPrimaryNav(); - $this->showSiteNotice(); + if (Event::handle('StartShowSiteNotice', array($this))) { + $this->showSiteNotice(); + + Event::handle('EndShowSiteNotice', array($this)); + } if (common_logged_in()) { $this->showNoticeForm(); } else { |