]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix to group join event position.
authorSarven Capadisli <csarven@status.net>
Wed, 3 Mar 2010 21:25:17 +0000 (16:25 -0500)
committerSarven Capadisli <csarven@status.net>
Wed, 3 Mar 2010 21:25:17 +0000 (16:25 -0500)
actions/showgroup.php

index a1dc3865bdbae98931adc47b59d2a48aa0ccfdbb..5704b13d140758f46fa51641bcce03171afa489b 100644 (file)
@@ -300,8 +300,8 @@ class ShowgroupAction extends GroupDesignAction
         $this->elementStart('div', 'entity_actions');
         $this->element('h2', null, _('Group actions'));
         $this->elementStart('ul');
+        $this->elementStart('li', 'entity_subscribe');
         if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
-            $this->elementStart('li', 'entity_subscribe');
             $cur = common_current_user();
             if ($cur) {
                 if ($cur->isMember($this->group)) {
@@ -312,10 +312,9 @@ class ShowgroupAction extends GroupDesignAction
                     $jf->show();
                 }
             }
-            $this->elementEnd('li');
             Event::handle('EndGroupSubscribe', array($this, $this->group));
         }
-
+        $this->elementEnd('li');
         $this->elementEnd('ul');
         $this->elementEnd('div');
     }