Skip to content

Commit

Permalink
(js) Fix user removal from ACLs in Admin module
Browse files Browse the repository at this point in the history
Fixes #3713
  • Loading branch information
cgx committed Jun 20, 2016
1 parent 6138122 commit 6538f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/WebServerResources/js/Common/Acl.service.js
Expand Up @@ -96,7 +96,7 @@
acls.then(function() {
user.wasSubscribed = false;
user.userClass = user.isGroup ? 'normal-group' : 'normal-user';
user.$rights = angular.bind(user, user.$acl, _this.folderId);
user.$rights = angular.bind(user, user.$acl, _this.folderId, owner);
_this.users.push(user);
deferred.resolve(user);
}, function(data, status) {
Expand Down

0 comments on commit 6538f6d

Please sign in to comment.