summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-11-02 14:03:50 -0700
committerBrion Vibber <brion@pobox.com>2010-11-02 14:03:50 -0700
commitbc85f6914be97e1b44891153dc96045dfcefcaf6 (patch)
tree8a04f1b3fad17f2e75090aa29cc303d76b3ac03a
parentc6d4612f4985326445a8401697f6277d04e5dde9 (diff)
fix syntax error introduced in i18n tweaks: newgroup action
-rw-r--r--actions/newgroup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newgroup.php b/actions/newgroup.php
index 9c1870b1c..e0e7978c3 100644
--- a/actions/newgroup.php
+++ b/actions/newgroup.php
@@ -151,7 +151,7 @@ class NewgroupAction extends Action
// TRANS: %d is the maximum number of allowed characters.
$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) {