Don't reject built in groups when changing permissions.
This commit is contained in:
parent
688e3ac7b6
commit
69a7126787
2 changed files with 2 additions and 1 deletions
|
|
@ -5,6 +5,7 @@
|
|||
- fix: Creating and updating files in WebGUI creates multiple storage locations.
|
||||
- fix: Welcome messages shouldn't be added to inbox as pending.
|
||||
- fix: Always use correct format for Message-Id headers in mail.
|
||||
- fix: Don't reject built in groups when changing permissions.
|
||||
|
||||
|
||||
7.3.16
|
||||
|
|
|
|||
|
|
@ -393,7 +393,7 @@ sub fixId {
|
|||
my $self = shift;
|
||||
my $id = shift;
|
||||
my $field = shift;
|
||||
if ($id =~ m/\Ad+\Z/xms || $id =~ m/\A[A-Za-z0-9\-\_]{22}\Z/xms) {
|
||||
if ($id =~ m/\A \d+ \z/xms || $id =~ m/\A [A-Za-z0-9\-\_]{22} \z/xms) {
|
||||
return $id;
|
||||
}
|
||||
return $self->getValue($field);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue