From 479d29a6e2f5cc29870e053ec06796d9ddc2d7c5 Mon Sep 17 00:00:00 2001 From: smizrahi Date: Tue, 2 May 2023 17:44:29 +0200 Subject: [PATCH] chore(sogo-tool): Fix delete ALL acl SQL issue --- Tools/SOGoToolManageACL.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/SOGoToolManageACL.m b/Tools/SOGoToolManageACL.m index 331f543bf..914ec528e 100644 --- a/Tools/SOGoToolManageACL.m +++ b/Tools/SOGoToolManageACL.m @@ -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];