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

(-)a/opac/svc/report (-1 / +4 lines)
Lines 67-71 unless ($json_text) { Link Here
67
    }
67
    }
68
}
68
}
69
69
70
print $query->header;
70
print $query->header(
71
    -charset    => 'UTF-8',
72
    -type       => 'application/json'
73
);
71
print $json_text;
74
print $json_text;
(-)a/svc/report (-2 / +4 lines)
Lines 77-81 unless ($json_text) { Link Here
77
    }
77
    }
78
}
78
}
79
79
80
print $query->header;
80
print $query->header(
81
    -charset    => 'UTF-8',
82
    -type       => 'application/json'
83
);
81
print $json_text;
84
print $json_text;
82
- 

Return to bug 11704