(tool) Fix "manage-acl unsubscribe"

Fixes #4591
pull/246/head
Francis Lachapelle 2018-11-13 10:59:08 -05:00
parent 8734ee7486
commit 707220bed3
2 changed files with 5 additions and 2 deletions

3
NEWS
View File

@ -5,6 +5,9 @@ Enhancements
- [web] show source addressbook of matching contacts in appointment editor (#4579)
- [web] improve display of keyboard shortcuts
Bug fixes
- [sogo-tool] fixed "manage-acl unsubscribe" command (#4591)
4.0.4 (2018-10-23)
------------------

View File

@ -1,6 +1,6 @@
/* SOGoToolManageACL.m - this file is part of SOGo
*
* Copyright (C) 2017 Inverse inc.
* Copyright (C) 2017-2018 Inverse inc.
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -55,7 +55,7 @@ typedef enum
ManageACLAdd = 1,
ManageACLRemove = 2,
ManageACLSubscribe = 3,
ManageACLUnsubscribe = 3,
ManageACLUnsubscribe = 4,
} SOGoManageACLCommand;
@interface SOGoToolManageACL : SOGoTool