@@ -, +, @@ --- .../prog/en/modules/tools/manage-marc-import.tt | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -49,9 +49,15 @@ $(document).ready(function(){ "fnServerData": function ( sSource, aoData, fnCallback ) { aoData.push( { "name": "import_batch_id", "value": [% import_batch_id %] } ); - $.getJSON( sSource, aoData, function (json) { - fnCallback(json) - } ); + $.ajax({ + 'dataType': 'json', + 'type': 'POST', + 'url': sSource, + 'data': aoData, + 'success': function(json){ + fnCallback(json); + } + }); }, "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) { $('td:eq(1)', nRow).html( --