]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
section for export data
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 22:17:18 +0000 (22:17 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 22:17:18 +0000 (22:17 +0000)
actions/public.php

index 62071ecccd471ede5e5b1f1aaef793c73088ce40..5a11cece18d50e50c3e88356bbbb61ede259d9c3 100644 (file)
@@ -187,6 +187,7 @@ class PublicAction extends Action
 
     function showExportData()
     {
+       $this->elementStart('div', array('id' => 'exportdata', 'class' => 'section'));
         $fl = new FeedList($this);
         $fl->show(array(0 => array('href' => common_local_url('publicrss'),
                                    'type' => 'rss',
@@ -196,5 +197,6 @@ class PublicAction extends Action
                                    'type' => 'atom',
                                    'version' => 'Atom 1.0',
                                    'item' => 'publicatom')));
+       $this->elementEnd('div');
     }
 }