mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
Change processGet jquery call get to post - #959
This commit is contained in:
parent
b2960f55e5
commit
7ab1748be6
@ -674,7 +674,7 @@ echo '</form>';
|
|||||||
}
|
}
|
||||||
|
|
||||||
var processGet = function (params, callback) {
|
var processGet = function (params, callback) {
|
||||||
return jQuery.get(ajaxPage, params, 'json')
|
return jQuery.post(ajaxPage, params, 'json')
|
||||||
.done(function (data, textStatus, jqXHR) {
|
.done(function (data, textStatus, jqXHR) {
|
||||||
try {
|
try {
|
||||||
data = JSON.parse(data);
|
data = JSON.parse(data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user