mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-28 14:45:28 +00:00
(fix) made sogo-tool manage-acl work on v2 (fixes #4292)
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2.3.24 (2018-XX-XX)
|
||||
-------------------
|
||||
|
||||
Bug fixes
|
||||
- sogo-tool manage-acl not working on v2 (#4292)
|
||||
|
||||
|
||||
2.3.23 (2017-10-18)
|
||||
-------------------
|
||||
|
||||
|
||||
@@ -294,14 +294,7 @@ typedef enum
|
||||
for (j = 0; j < [rights count]; j++)
|
||||
{
|
||||
currentRole = [rights objectAtIndex: j];
|
||||
if ([GCSFolderManager singleStoreMode])
|
||||
SQL = [NSString stringWithFormat: @"INSERT INTO %@"
|
||||
@" (c_object, c_uid, c_role, c_folder_id)"
|
||||
@" VALUES ('/%@', '%@', '%@', %@)",
|
||||
[theFolder aclTableName],
|
||||
path, u, currentRole, [theFolder folderId]];
|
||||
else
|
||||
SQL = [NSString stringWithFormat: @"INSERT INTO %@"
|
||||
SQL = [NSString stringWithFormat: @"INSERT INTO %@"
|
||||
@" (c_object, c_uid, c_role)"
|
||||
@" VALUES ('/%@', '%@', '%@')",
|
||||
[theFolder aclTableName],
|
||||
|
||||
Reference in New Issue
Block a user