Change processGet jquery call get to post - #959

This commit is contained in:
enriquecd 2017-06-01 15:27:55 +02:00
parent b2960f55e5
commit 7ab1748be6
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ echo '</form>';
}
var processGet = function (params, callback) {
return jQuery.get(ajaxPage, params, 'json')
return jQuery.post(ajaxPage, params, 'json')
.done(function (data, textStatus, jqXHR) {
try {
data = JSON.parse(data);