diff options
author | Evan Prodromou <evan@status.net> | 2010-09-21 14:09:46 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-09-21 14:09:46 -0400 |
commit | 28fdc733a7e90146ae7803d61c352c1758285bd8 (patch) | |
tree | ffd34be3af0bba39657a335f1d4bfd8032b7c7fc /lib/action.php | |
parent | 55ad954b15d0d2d855c4cb8db5da95d3c2d0dbfb (diff) |
change the location and title of the feeds section
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/action.php b/lib/action.php index e50397514..dc21c75e5 100644 --- a/lib/action.php +++ b/lib/action.php @@ -715,14 +715,14 @@ class Action extends HTMLOutputter // lawsuit { $this->elementStart('div', array('id' => 'aside_primary', 'class' => 'aside')); - if (Event::handle('StartShowExportData', array($this))) { - $this->showExportData(); - Event::handle('EndShowExportData', array($this)); - } if (Event::handle('StartShowSections', array($this))) { $this->showSections(); Event::handle('EndShowSections', array($this)); } + if (Event::handle('StartShowExportData', array($this))) { + $this->showExportData(); + Event::handle('EndShowExportData', array($this)); + } $this->elementEnd('div'); } |