mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
chore(sogo-tool): Fix delete ALL acl SQL issue
This commit is contained in:
@@ -366,7 +366,7 @@ typedef enum
|
||||
NSString *qs, *path;
|
||||
|
||||
if ([theUser isEqualToString: @"ALL"])
|
||||
qs = [NSString stringWithFormat: @"c_uid LIKE '\%'", theUser];
|
||||
qs = [NSString stringWithFormat: @"c_uid LIKE '%%'"];
|
||||
else
|
||||
qs = [NSString stringWithFormat: @"c_uid = '%@'", theUser];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user