mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Fix not being able to set ACL rights for folders that have space on their names
This commit is contained in:
parent
cf6ae6ee77
commit
6016325aa1
@ -314,7 +314,7 @@ class mail_acl
|
||||
}
|
||||
else
|
||||
{
|
||||
$folders = explode(' ',$mailbox);
|
||||
$folders = (array)$mailbox;
|
||||
}
|
||||
foreach($folders as $sbFolders)
|
||||
{
|
||||
@ -376,7 +376,7 @@ class mail_acl
|
||||
}
|
||||
else
|
||||
{
|
||||
$folders = explode(' ',$mailbox);
|
||||
$folders = (array)$mailbox;
|
||||
}
|
||||
foreach($folders as $sbFolders)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user