From: Brion Vibber Date: Fri, 12 Nov 2010 21:34:04 +0000 (-0800) Subject: Revert "Missing one close-paren in newgroup.php" - incorrect fix for paren bug X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9621904cac010bdf31f1a8128517722172ff8df4;p=quix0rs-gnu-social.git Revert "Missing one close-paren in newgroup.php" - incorrect fix for paren bug This reverts commit 3afb031d9270a29db7f1ac4a964bb4b796759827. --- diff --git a/actions/newgroup.php b/actions/newgroup.php index 371e508379..2951920362 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -147,7 +147,7 @@ class NewgroupAction extends Action $this->showForm(sprintf(_m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', User_group::maxDescription(), - User_group::maxDescription()))); + User_group::maxDescription())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { $this->showForm(_('Location is too long (maximum 255 characters).'));