Fix delete for most controllers (#721)

This commit is contained in:
jekkos
2016-07-05 22:15:05 +02:00
parent 3cff918f81
commit f04cbc9674

View File

@@ -27,7 +27,8 @@
};
$.post = function() {
post.call(this, arguments[0], $.extend(arguments[1], csrf_form_base()));
arguments[1] = $.extend(arguments[1], csrf_form_base());
post.apply(this, arguments);
};
var setup_csrf_token = function() {