summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-09-21 14:09:46 -0400
committerEvan Prodromou <evan@status.net>2010-09-21 14:09:46 -0400
commit28fdc733a7e90146ae7803d61c352c1758285bd8 (patch)
treeffd34be3af0bba39657a335f1d4bfd8032b7c7fc /lib
parent55ad954b15d0d2d855c4cb8db5da95d3c2d0dbfb (diff)
change the location and title of the feeds section
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php8
-rw-r--r--lib/feedlist.php2
2 files changed, 5 insertions, 5 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');
}
diff --git a/lib/feedlist.php b/lib/feedlist.php
index 9ae83f5e8..7493e3575 100644
--- a/lib/feedlist.php
+++ b/lib/feedlist.php
@@ -61,7 +61,7 @@ class FeedList extends Widget
{
$this->out->elementStart('div', array('id' => 'export_data',
'class' => 'section'));
- $this->out->element('h2', null, _('Export data'));
+ $this->out->element('h2', null, _('Feeds'));
$this->out->elementStart('ul', array('class' => 'xoxo'));
foreach ($feeds as $feed) {