From 4cee28ace9ece31acc89277903a8924a0747ac95 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 15 Jan 2009 22:17:18 +0000 Subject: [PATCH] section for export data --- actions/public.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actions/public.php b/actions/public.php index 62071ecccd..5a11cece18 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'); } }