@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 8 ++++---- svc/{checkin.pl => checkin} | 0 svc/{checkouts.pl => checkouts} | 2 -- svc/{holds.pl => holds} | 2 -- svc/{renew.pl => renew} | 0 5 files changed, 4 insertions(+), 8 deletions(-) rename svc/{checkin.pl => checkin} (100%) rename svc/{checkouts.pl => checkouts} (98%) rename svc/{holds.pl => holds} (97%) rename svc/{renew.pl => renew} (100%) --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -57,7 +57,7 @@ $(document).ready(function() { exempt_fine: $("#exemptfine").is(':checked') }; - $.post( "/cgi-bin/koha/svc/checkin.pl", params, function( data ) { + $.post( "/cgi-bin/koha/svc/checkin", params, function( data ) { id = "#checkin_" + data.itemnumber; content = ""; @@ -86,7 +86,7 @@ $(document).ready(function() { date_due: $("#newduedate").val() }; - $.post( "/cgi-bin/koha/svc/renew.pl", params, function( data ) { + $.post( "/cgi-bin/koha/svc/renew", params, function( data ) { var id = "#renew_" + data.itemnumber; var content = ""; @@ -305,7 +305,7 @@ $(document).ready(function() { "bPaginate": false, "bProcessing": true, "bServerSide": false, - "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl', + "sAjaxSource": '/cgi-bin/koha/svc/checkouts', "fnServerData": function ( sSource, aoData, fnCallback ) { aoData.push( { "name": "borrowernumber", "value": borrowernumber } ); @@ -431,7 +431,7 @@ $(document).ready(function() { "bPaginate": false, "bProcessing": true, "bServerSide": false, - "sAjaxSource": '/cgi-bin/koha/svc/checkouts.pl', + "sAjaxSource": '/cgi-bin/koha/svc/checkouts', "fnServerData": function ( sSource, aoData, fnCallback ) { $.each(relatives_borrowernumbers, function( index, value ) { aoData.push( { "name": "borrowernumber", "value": value } ); --- a/svc/checkouts.pl +++ a/svc/checkouts.pl @@ -1,7 +1,5 @@ #!/usr/bin/perl -# This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html) - # Copyright 2014 ByWater Solutions # # This file is part of Koha. --- a/svc/holds.pl +++ a/svc/holds.pl @@ -1,7 +1,5 @@ #!/usr/bin/perl -# This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html) - # Copyright 2014 ByWater Solutions # # This file is part of Koha.