]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix weird alignment of controls in subscriptions page. The dots are gone now
authorShashi Gowda <connect2shashi@gmail.com>
Fri, 8 Apr 2011 11:40:36 +0000 (17:10 +0530)
committerShashi Gowda <connect2shashi@gmail.com>
Fri, 8 Apr 2011 11:40:48 +0000 (17:10 +0530)
lib/galleryaction.php

index ba60c195c7bb4168d88e4fb11dff3e82b9f212bb..ac2feeeccf11d5bcfc8fc253c4b33dfbf520c91b 100644 (file)
@@ -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');
         }
     }