Skip to content

Commit

Permalink
Fixed AntiForgery error in exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Herzog committed Nov 11, 2020
1 parent 1970576 commit 4e61648
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@
$('#ProfileExportButton').click(function (e) {
e.preventDefault();
$(this).doPostData({
ask: @(T("Admin.Common.AskToProceed").JsText)
ask: @(T("Admin.Common.AskToProceed").JsText),
data: { "__RequestVerificationToken": $('input[name="__RequestVerificationToken"]').val() }
});
return false;
});
Expand Down

0 comments on commit 4e61648

Please sign in to comment.