From 82e1716656157284216e71138d3ebf38a1c5f412 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 30 Aug 2011 11:06:28 +0200 Subject: [PATCH] Remove superfluous whitespace. --- lib/groupaction.php | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/lib/groupaction.php b/lib/groupaction.php index 3e3cc45b30..08de66b149 100644 --- a/lib/groupaction.php +++ b/lib/groupaction.php @@ -41,7 +41,6 @@ define('MEMBERS_PER_SECTION', 27); * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ - * */ class GroupAction extends Action { @@ -140,7 +139,7 @@ class GroupAction extends Action 'class' => 'section')); if (Event::handle('StartShowGroupMembersMiniList', array($this))) { - + // TRANS: Header for mini list of group members on a group page (h2). $this->elementStart('h2'); @@ -151,7 +150,7 @@ class GroupAction extends Action $this->text(' '); $this->text($this->group->getMemberCount()); - + $this->elementEnd('h2'); $gmml = new GroupMembersMiniList($member, $this); @@ -176,7 +175,6 @@ class GroupAction extends Action $this->elementEnd('div'); } - function showPending() { if ($this->group->join_policy != User_group::JOIN_POLICY_MODERATE) { @@ -199,7 +197,7 @@ class GroupAction extends Action 'class' => 'section')); if (Event::handle('StartShowGroupPendingMiniList', array($this))) { - + $this->elementStart('h2'); $this->element('a', array('href' => common_local_url('groupqueue', array('nickname' => @@ -209,7 +207,7 @@ class GroupAction extends Action $this->text(' '); $this->text($pending); - + $this->elementEnd('h2'); $gmml = new ProfileMiniList($request, $this); @@ -233,7 +231,7 @@ class GroupAction extends Action 'class' => 'section')); if (Event::handle('StartShowGroupBlockedMiniList', array($this))) { - + $this->elementStart('h2'); $this->element('a', array('href' => common_local_url('blockedfromgroup', array('nickname' => @@ -243,7 +241,7 @@ class GroupAction extends Action $this->text(' '); $this->text($this->group->getBlockedCount()); - + $this->elementEnd('h2'); $gmml = new GroupBlockedMiniList($blocked, $this); @@ -279,7 +277,6 @@ class GroupAction extends Action $adminSection->show(); } - function noticeFormOptions() { $options = parent::noticeFormOptions(); @@ -376,4 +373,3 @@ class ThreadingGroupNoticeStream extends ThreadingNoticeStream parent::__construct(new GroupNoticeStream($group, $profile)); } } - -- 2.39.2