]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix syntax error introduced in i18n tweaks: newgroup action
authorBrion Vibber <brion@pobox.com>
Tue, 2 Nov 2010 21:03:50 +0000 (14:03 -0700)
committerBrion Vibber <brion@status.net>
Fri, 12 Nov 2010 21:35:19 +0000 (13:35 -0800)
actions/newgroup.php

index 2951920362740e149c0650ae9fbfcc03e19ef7f1..05520223c0f7c6fb5b64e77545547503f8ffeaae 100644 (file)
@@ -146,7 +146,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) {