diff options
author | Evan Prodromou <evan@status.net> | 2010-11-09 17:08:11 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-11-09 17:08:11 -0500 |
commit | 3afb031d9270a29db7f1ac4a964bb4b796759827 (patch) | |
tree | 14bc6024c59a454e4b914891225a2970f483af35 /actions | |
parent | a4654bfe9f950fa3ca76d109f21030a03507c3da (diff) |
Missing one close-paren in newgroup.php
Diffstat (limited to 'actions')
-rw-r--r-- | actions/newgroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newgroup.php b/actions/newgroup.php index 295192036..371e50837 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).')); |