summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php5
-rw-r--r--lib/feedlist.php5
-rw-r--r--lib/noticelist.php3
3 files changed, 8 insertions, 5 deletions
diff --git a/lib/action.php b/lib/action.php
index 76cf419cb..d106ba366 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -338,10 +338,11 @@ class Action extends HTMLOutputter // lawsuit
function showAside()
{
- $this->elementStart('div', 'aside');
+ $this->elementStart('div', array('id' => 'aside_primary',
+ 'class' => 'aside'));
$this->showExportData();
$this->showSections();
- $this->elementEnd('div');
+ $this->elementEnd('div');
}
// MAY overload if there are feeds
diff --git a/lib/feedlist.php b/lib/feedlist.php
index 9bc77ca15..47d909e96 100644
--- a/lib/feedlist.php
+++ b/lib/feedlist.php
@@ -59,8 +59,9 @@ class FeedList extends Widget
function show($feeds)
{
- $this->out->elementStart('div', array('class' => 'feeds'));
- $this->out->element('p', null, 'Feeds:');
+ $this->out->elementStart('div', array('id' => 'export_data',
+ 'class' => 'section'));
+ $this->out->element('h2', null, _('Export data'));
$this->out->elementStart('ul', array('class' => 'xoxo'));
foreach ($feeds as $key => $value) {
diff --git a/lib/noticelist.php b/lib/noticelist.php
index ad3af4391..7f63089b3 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -79,7 +79,8 @@ class NoticeList extends Widget
function show()
{
- $this->out->elementStart('ul', array('id' => 'notices'));
+ $this->out->element('h2', null, _('Notices'));
+ $this->out->elementStart('ul', array('class' => 'notices'));
$cnt = 0;