fix JS syntax error (using PHP concat operator in JS)
This commit is contained in:
parent
8b61175c3b
commit
561b3dd1e7
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ $(document).ready(function () {
|
||||||
console.error(jqXHR);
|
console.error(jqXHR);
|
||||||
swal({
|
swal({
|
||||||
title: 'Whoops!',
|
title: 'Whoops!',
|
||||||
text: 'An error occured while attempting to set the EULA as accepted: ' . jqXHR.responseJSON.error,
|
text: 'An error occurred while attempting to set the EULA as accepted: ' + jqXHR.responseJSON.error,
|
||||||
type: 'error'
|
type: 'error'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue