change the location and title of the feeds section

This commit is contained in:
Evan Prodromou 2010-09-21 14:09:46 -04:00
parent 55ad954b15
commit 28fdc733a7
2 changed files with 5 additions and 5 deletions

View 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');
}

View 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) {