From: Evan Prodromou Date: Thu, 15 Jan 2009 22:17:18 +0000 (+0000) Subject: section for export data X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4cee28ace9ece31acc89277903a8924a0747ac95;p=quix0rs-gnu-social.git section for export data --- 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'); } }