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

(-)a/opac/svc/report (-16 / +14 lines)
Lines 1-25 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# Copyright 2011 Chris Cormack <chris@bigballofwax.co.nz>
4
#
5
# This file is part of Koha.
3
# This file is part of Koha.
6
#
4
#
7
# Koha is free software; you can redistribute it and/or modify it under the
5
# Copyright (C) 2011  Chris Cormack <chris@bigballofwax.co.nz>
8
# terms of the GNU General Public License as published by the Free Software
6
# Copyright (C) 2013  Mark Tompsett
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
7
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
8
# Koha is free software; you can redistribute it and/or modify it
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
9
# under the terms of the GNU General Public License as published by
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
10
# the Free Software Foundation; either version 3 of the License, or
11
# (at your option) any later version.
15
#
12
#
16
# You should have received a copy of the GNU General Public License along
13
# Koha is distributed in the hope that it will be useful, but
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
14
# WITHOUT ANY WARRANTY; without even the implied warranty of
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
16
# GNU General Public License for more details.
17
#
18
# You should have received a copy of the GNU General Public License
19
# along with Koha; if not, see <http://www.gnu.org/licenses>.
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use C4::Reports::Guided;
23
use C4::Reports::Guided;
25
use JSON;
24
use JSON;
26
- 

Return to bug 11491