Added check for user ID before posting to the server.

This commit is contained in:
Alex Tselegidis 2015-11-23 23:33:42 +01:00
parent d40c336c3b
commit 5a34d7ec3f
1 changed files with 7 additions and 1 deletions

View File

@ -180,11 +180,17 @@ var BackendUsers = {
return;
}
var userId = $input.parents().eq(2).find('.record-id').val();
if (userId == undefined) {
return;
}
var postUrl = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_validate_username';
var postData = {
'csrfToken': GlobalVariables.csrfToken,
'username': $input.val(),
'user_id': $input.parents().eq(2).find('.record-id').val()
'user_id': userId
};
$.post(postUrl, postData, function(response) {