diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 21:58:07 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 21:58:07 +0000 |
commit | cf809f6464ee41ccbb654d226f328457fc2e5299 (patch) | |
tree | d5bb7b9253f7b5f770f9732944263752ced4bf1b | |
parent | 5b61f459d6486c523d927839bbc078a49e51d2ab (diff) |
feed show() id and class
-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) { |