View | Details | Raw Unified | Return to bug 37093
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +1 lines)
Lines 2391-2397 Link Here
2391
2391
2392
        function mana_search( textquery ){
2392
        function mana_search( textquery ){
2393
            $(".mana_search_status").hide();
2393
            $(".mana_search_status").hide();
2394
            $("#mana_result_content").load("/cgi-bin/koha/svc/mana/search #mana_results", { resource: 'report', id: textquery, usecomments: 1 }, function( response, status, xhr ) {
2394
            $("#mana_result_content").load("/cgi-bin/koha/svc/mana/search #mana_results", "resource=report&usecomments=1&id=" + textquery, function( response, status, xhr ) {
2395
2395
2396
                    if ( status == "error" ) {
2396
                    if ( status == "error" ) {
2397
                        $("#mana_search_errortext").html( xhr.status + " " + xhr.statusText );
2397
                        $("#mana_search_errortext").html( xhr.status + " " + xhr.statusText );
2398
- 

Return to bug 37093