]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change the location and title of the feeds section
authorEvan Prodromou <evan@status.net>
Tue, 21 Sep 2010 18:09:46 +0000 (14:09 -0400)
committerEvan Prodromou <evan@status.net>
Tue, 21 Sep 2010 18:09:46 +0000 (14:09 -0400)
lib/action.php
lib/feedlist.php

index e503975147085db7200db9575dcea0da54078456..dc21c75e5a917704b2863398e39cd221c0ab1c3a 100644 (file)
@@ -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');
     }
 
index 9ae83f5e886e00bac74c39dcbf06579c4ea8a229..7493e3575ed6666d3fd13ad9602cede8a1314f78 100644 (file)
@@ -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) {