From: Evan Prodromou Date: Fri, 21 Aug 2009 10:37:22 +0000 (-0400) Subject: correct instructions for length in groupeditform X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7a6827258032f9d082f093c741125262ddeb81da;p=quix0rs-gnu-social.git correct instructions for length in groupeditform --- diff --git a/lib/groupeditform.php b/lib/groupeditform.php index 62ee786144..47e62d469e 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -163,9 +163,15 @@ class GroupEditForm extends Form _('URL of the homepage or blog of the group or topic')); $this->out->elementEnd('li'); $this->out->elementStart('li'); + $desclimit = User_group::maxDescription(); + if ($desclimit == 0) { + $descinstr = _('Describe the group or topic'); + } else { + $descinstr = sprintf(_('Describe the group or topic in %d characters'), $desclimit); + } $this->out->textarea('description', _('Description'), ($this->out->arg('description')) ? $this->out->arg('description') : $description, - _('Describe the group or topic in 140 chars')); + $descinstr); $this->out->elementEnd('li'); $this->out->elementStart('li'); $this->out->input('location', _('Location'),