remotes/origin/exclude_directories_III
Thomas Müller 11 years ago
parent 960c8cb5bc
commit 267d30d4f6
  1. 12
      settings/js/users/users.js

@ -315,11 +315,7 @@ var UserList = {
var gid = groups[i];
var $li = GroupList.getGroupLI(gid);
var userCount = GroupList.getUserCount($li);
if(userCount === 1) {
GroupList.setUserCount($li, '');
} else {
GroupList.setUserCount($li, userCount - 1);
}
GroupList.setUserCount($li, userCount - 1);
}
GroupList.decEveryoneCount();
UserList.hide(uid);
@ -334,11 +330,7 @@ var UserList = {
var gid = groups[i];
var $li = GroupList.getGroupLI(gid);
var userCount = GroupList.getUserCount($li);
if(userCount === 1) {
GroupList.setUserCount($li, '');
} else {
GroupList.setUserCount($li, userCount + 1);
}
GroupList.setUserCount($li, userCount + 1);
}
GroupList.incEveryoneCount();
UserList.getRow(uid).show();

Loading…
Cancel
Save