From: Brion Vibber Date: Tue, 2 Nov 2010 21:03:50 +0000 (-0700) Subject: fix syntax error introduced in i18n tweaks: newgroup action X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bc85f6914be97e1b44891153dc96045dfcefcaf6;p=quix0rs-gnu-social.git fix syntax error introduced in i18n tweaks: newgroup action --- diff --git a/actions/newgroup.php b/actions/newgroup.php index 9c1870b1c6..e0e7978c32 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) {