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

(-)a/C4/Biblio.pm (-2 / +1 lines)
Lines 19-26 package C4::Biblio; Link Here
19
# You should have received a copy of the GNU General Public License
19
# You should have received a copy of the GNU General Public License
20
# along with Koha; if not, see <http://www.gnu.org/licenses>.
20
# along with Koha; if not, see <http://www.gnu.org/licenses>.
21
21
22
use strict;
22
use Modern::Perl;
23
use warnings;
24
use Carp;
23
use Carp;
25
24
26
use Encode qw( decode is_utf8 );
25
use Encode qw( decode is_utf8 );
(-)a/C4/XSLT.pm (-12 / +11 lines)
Lines 8-28 package C4::XSLT; Link Here
8
#
8
#
9
# This file is part of Koha.
9
# This file is part of Koha.
10
#
10
#
11
# Koha is free software; you can redistribute it and/or modify it under the
11
# Koha is free software; you can redistribute it and/or modify it
12
# terms of the GNU General Public License as published by the Free Software
12
# under the terms of the GNU General Public License as published by
13
# Foundation; either version 3 of the License, or (at your option) any later
13
# the Free Software Foundation; either version 3 of the License, or
14
# version.
14
# (at your option) any later version.
15
#
15
#
16
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16
# Koha is distributed in the hope that it will be useful, but
17
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17
# WITHOUT ANY WARRANTY; without even the implied warranty of
18
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
# GNU General Public License for more details.
19
#
20
#
20
# You should have received a copy of the GNU General Public License along
21
# You should have received a copy of the GNU General Public License
21
# with Koha; if not, write to the Free Software Foundation, Inc.,
22
# along with Koha; if not, see <http://www.gnu.org/licenses>.
22
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
23
24
use strict;
24
use Modern::Perl;
25
use warnings;
26
25
27
use C4::Context;
26
use C4::Context;
28
use C4::Branch;
27
use C4::Branch;
(-)a/opac/opac-ISBDdetail.pl (-2 / +1 lines)
Lines 39-46 the items attached to the biblio Link Here
39
39
40
=cut
40
=cut
41
41
42
use strict;
42
use Modern::Perl;
43
use warnings;
44
43
45
use C4::Auth;
44
use C4::Auth;
46
use C4::Context;
45
use C4::Context;
(-)a/opac/opac-showmarc.pl (-13 / +11 lines)
Lines 4-24 Link Here
4
#
4
#
5
# This file is part of Koha.
5
# This file is part of Koha.
6
#
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
7
# Koha is free software; you can redistribute it and/or modify it
8
# terms of the GNU General Public License as published by the Free Software
8
# under the terms of the GNU General Public License as published by
9
# Foundation; either version 3 of the License, or (at your option) any later
9
# the Free Software Foundation; either version 3 of the License, or
10
# version.
10
# (at your option) any later version.
11
#
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12
# Koha is distributed in the hope that it will be useful, but
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
15
#
16
#
16
# You should have received a copy of the GNU General Public License along
17
# You should have received a copy of the GNU General Public License
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
19
20
use strict;
20
use Modern::Perl;
21
use warnings;
22
21
23
# standard or CPAN modules used
22
# standard or CPAN modules used
24
use CGI qw ( -utf8 );
23
use CGI qw ( -utf8 );
25
- 

Return to bug 11592