X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=cataloguing%2Fvalue_builder%2Fcallnumber-KU.pl;h=8394da0d286165013d9c959f0ed9a3cd622ba36a;hb=6cd592ba3b18236a3c0f82873d4444c1f884f37c;hp=201f9c84e2b7ea148838d282e3969f063233dd73;hpb=1ee7f449be2ba45c2458d2ac571172ecf58752b2;p=koha.git diff --git a/cataloguing/value_builder/callnumber-KU.pl b/cataloguing/value_builder/callnumber-KU.pl index 201f9c84e2..8394da0d28 100755 --- a/cataloguing/value_builder/callnumber-KU.pl +++ b/cataloguing/value_builder/callnumber-KU.pl @@ -4,24 +4,25 @@ # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; use C4::Auth; -use CGI; +use CGI qw ( -utf8 ); use C4::Context; +use C4::Output; =head1 DESCRIPTION @@ -39,32 +40,18 @@ CCC QW - returns first unused number CCC QWxx starting with CCC QW01 =cut -sub plugin_parameters { -} - sub plugin_javascript { my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_; my $res=" @@ -79,7 +66,7 @@ sub plugin { my $code = $input->param('code'); my ($template, $loggedinuser, $cookie) = get_template_and_user({ - template_name => "cataloguing/value_builder/ajax.tmpl", + template_name => "cataloguing/value_builder/ajax.tt", query => $input, type => "intranet", authnotrequired => 0, @@ -131,5 +118,3 @@ sub plugin { ); output_html_with_http_headers $input, $cookie, $template->output; } - -1;