Fix undo delete user

This commit is contained in:
Michael Gapczynski 2012-07-14 16:56:17 -04:00
parent 140263003a
commit b455149bae
1 changed files with 16 additions and 17 deletions

View File

@ -47,25 +47,24 @@ UserList={
if( !UserList.deleteCanceled && UserList.deleteUid ){ if( !UserList.deleteCanceled && UserList.deleteUid ){
// Delete user via ajax // Delete user via ajax
$.post( $.ajax({
OC.filePath('settings','ajax','removeuser.php'), type: 'POST',
{username:UserList.deleteUid}, url: OC.filePath('settings', 'ajax', 'removeuser.php'),
function(result){ async: false,
data: { username: UserList.deleteUid },
// Remove undo option, & remove user from table success: function(result) {
boolOperationFinished( if (result.status == 'success') {
data, function(){ // Remove undo option, & remove user from table
$('#notification').fadeOut(); $('#notification').fadeOut();
$('tr').filterAttr( 'data-uid', username ).remove(); $('tr').filterAttr('data-uid', UserList.deleteUid).remove();
UserList.deleteCanceled=true; UserList.deleteCanceled = true;
UserList.deleteFiles=null; UserList.deleteFiles = null;
if( ready ){ if (ready) {
ready(); ready();
}
} }
); }
} }
); });
} }
} }
} }