summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@status.net>2010-11-12 13:34:04 -0800
committerBrion Vibber <brion@status.net>2010-11-12 13:34:04 -0800
commit9621904cac010bdf31f1a8128517722172ff8df4 (patch)
tree83fd602934a0cd3a6ccf968ac269ed7342e49544
parent6291e8201f90ed50687f7670edc505645ea55bfb (diff)
Revert "Missing one close-paren in newgroup.php" - incorrect fix for paren bug
This reverts commit 3afb031d9270a29db7f1ac4a964bb4b796759827.
-rw-r--r--actions/newgroup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newgroup.php b/actions/newgroup.php
index 371e50837..295192036 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).'));