diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feedlist.php | 5 |
1 files changed, 3 insertions, 2 deletions
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) { |