allow configurable length for user group description
This commit is contained in:
parent
a28bbdfb0f
commit
cd688acceb
@ -196,8 +196,8 @@ class EditgroupAction extends GroupDesignAction
|
||||
} else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
|
||||
$this->showForm(_('Full name is too long (max 255 chars).'));
|
||||
return;
|
||||
} else if (!is_null($description) && mb_strlen($description) > 140) {
|
||||
$this->showForm(_('description is too long (max 140 chars).'));
|
||||
} else if (User_group::descriptionTooLong($description)) {
|
||||
$this->showForm(sprintf(_('description is too long (max %d chars).'), User_group::maxDescription()));
|
||||
return;
|
||||
} else if (!is_null($location) && mb_strlen($location) > 255) {
|
||||
$this->showForm(_('Location is too long (max 255 chars).'));
|
||||
|
@ -146,8 +146,8 @@ class NewgroupAction extends Action
|
||||
} else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
|
||||
$this->showForm(_('Full name is too long (max 255 chars).'));
|
||||
return;
|
||||
} else if (!is_null($description) && mb_strlen($description) > 140) {
|
||||
$this->showForm(_('description is too long (max 140 chars).'));
|
||||
} else if (User_group::descriptionTooLong($description)) {
|
||||
$this->showForm(sprintf(_('description is too long (max %d chars).'), User_group::maxDescription()));
|
||||
return;
|
||||
} else if (!is_null($location) && mb_strlen($location) > 255) {
|
||||
$this->showForm(_('Location is too long (max 255 chars).'));
|
||||
|
@ -297,4 +297,19 @@ class User_group extends Memcached_DataObject
|
||||
|
||||
return $ids;
|
||||
}
|
||||
|
||||
static function maxDescription()
|
||||
{
|
||||
$desclimit = common_config('group', 'desclimit');
|
||||
if (empty($desclimit)) {
|
||||
$desclimit = common_config('site', 'textlimit');
|
||||
}
|
||||
return $desclimit;
|
||||
}
|
||||
|
||||
static function descriptionTooLong($desc)
|
||||
{
|
||||
$desclimit = self::maxDescription();
|
||||
return (!empty($desclimit) && !empty($desc) && (mb_strlen($desc) > $desclimit));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user