From d442f596938d1ada5ea0d8deeb503b4d993de169 Mon Sep 17 00:00:00 2001 From: Shashi Gowda Date: Fri, 8 Apr 2011 17:10:36 +0530 Subject: [PATCH] Fix weird alignment of controls in subscriptions page. The dots are gone now --- lib/galleryaction.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/galleryaction.php b/lib/galleryaction.php index ba60c195c7..ac2feeeccf 100644 --- a/lib/galleryaction.php +++ b/lib/galleryaction.php @@ -120,6 +120,9 @@ class GalleryAction extends OwnerDesignAction $content[$t] = $t; } if ($tags) { + $this->elementStart('dl', array('id' => 'filter_tags')); + $this->element('dt', null, _('Tags')); + $this->elementStart('dd'); $this->elementStart('ul'); $this->elementStart('li', array('id' => 'filter_tags_all', 'class' => 'child_1')); @@ -150,6 +153,8 @@ class GalleryAction extends OwnerDesignAction $this->elementEnd('form'); $this->elementEnd('li'); $this->elementEnd('ul'); + $this->elementEnd('dd'); + $this->elementEnd('dl'); } } -- 2.39.2