Browse Source

Fix deleting multiple user w-o reloading V2

remotes/origin/stable5
Brice Maron 14 years ago
parent
commit
910a25adbd
  1. 5
      settings/js/users.js

5
settings/js/users.js

@ -16,7 +16,10 @@ var UserList={
* finishDelete() completes the process. This allows for 'undo'.
*/
do_delete:function( uid ) {
if (typeof UserList.deleteUid !== 'undefined') {
//Already a user in the undo queue
UserList.finishDelete(null);
}
UserList.deleteUid = uid;
// Set undo flag

Loading…
Cancel
Save