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 2380-2386 Link Here
2380
2380
2381
        function mana_search( textquery ){
2381
        function mana_search( textquery ){
2382
            $(".mana_search_status").hide();
2382
            $(".mana_search_status").hide();
2383
            $("#mana_result_content").load("/cgi-bin/koha/svc/mana/search #mana_results", { resource: 'report', id: textquery, usecomments: 1 }, function( response, status, xhr ) {
2383
            $("#mana_result_content").load("/cgi-bin/koha/svc/mana/search #mana_results", "resource=report&usecomments=1&id=" + textquery, function( response, status, xhr ) {
2384
2384
2385
                    if ( status == "error" ) {
2385
                    if ( status == "error" ) {
2386
                        $("#mana_search_errortext").html( xhr.status + " " + xhr.statusText );
2386
                        $("#mana_search_errortext").html( xhr.status + " " + xhr.statusText );
2387
- 

Return to bug 37093