summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 22:19:53 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 22:19:53 +0000
commitd6d9a0a98155b251ff9893637ab4b8e641331d04 (patch)
tree039f1bbe93417c0daca88df0e46ad63868c47d74 /actions
parent8b3459812764d05044bcdfb18627f80c34dc239d (diff)
parenta72ae0f4df7e9bbbd4864e21f784ea0da53dfcac (diff)
Merge branch 'uiredesign' of ../evan into uiredesign
Diffstat (limited to 'actions')
-rw-r--r--actions/public.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php
index 62071eccc..5a11cece1 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -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');
}
}