X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=patroncards%2Fedit-template.pl;h=c7b47086e5b380c1a90ef19898516137179cf832;hb=d3752c85dc2f5af974ec2fe4585efa8510302968;hp=4893868bf3c7ce0cba4b243c374651b80a01f8c9;hpb=84d5b28f12c038309e8d3891653ea6fd291b666e;p=koha.git diff --git a/patroncards/edit-template.pl b/patroncards/edit-template.pl index 4893868bf3..c7b47086e5 100755 --- a/patroncards/edit-template.pl +++ b/patroncards/edit-template.pl @@ -5,34 +5,34 @@ # # 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., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; -use CGI; +use CGI qw ( -utf8 ); use autouse 'Data::Dumper' => qw(Dumper); use C4::Auth qw(get_template_and_user); use C4::Output qw(output_html_with_http_headers); -use C4::Creators 1.000000; -use C4::Patroncards 1.000000; +use C4::Creators; +use C4::Patroncards; my $cgi = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { - template_name => "patroncards/edit-template.tmpl", + template_name => "patroncards/edit-template.tt", query => $cgi, type => "intranet", authnotrequired => 0, @@ -53,20 +53,20 @@ if ($op eq 'edit') { $profile_list = get_all_profiles(field_list => 'profile_id,printer_name,paper_bin', filter => "template_id=$template_id OR template_id=''"); } elsif ($op eq 'save') { - my @params = ( profile_id => $cgi->param('profile_id') || '', - template_code => $cgi->param('template_code'), - template_desc => $cgi->param('template_desc'), - page_width => $cgi->param('page_width'), - page_height => $cgi->param('page_height'), - label_width => $cgi->param('card_width'), - label_height => $cgi->param('card_height'), - top_margin => $cgi->param('top_margin'), - left_margin => $cgi->param('left_margin'), - cols => $cgi->param('cols'), - rows => $cgi->param('rows'), - col_gap => $cgi->param('col_gap'), - row_gap => $cgi->param('row_gap'), - units => $cgi->param('units'), + my @params = ( profile_id => scalar $cgi->param('profile_id') || '', + template_code => scalar $cgi->param('template_code'), + template_desc => scalar $cgi->param('template_desc'), + page_width => scalar $cgi->param('page_width'), + page_height => scalar $cgi->param('page_height'), + label_width => scalar $cgi->param('card_width'), + label_height => scalar $cgi->param('card_height'), + top_margin => scalar $cgi->param('top_margin'), + left_margin => scalar $cgi->param('left_margin'), + cols => scalar $cgi->param('cols'), + rows => scalar $cgi->param('rows'), + col_gap => scalar $cgi->param('col_gap'), + row_gap => scalar $cgi->param('row_gap'), + units => scalar $cgi->param('units'), ); if ($template_id) { # if a template_id was passed in, this is an update to an existing template $card_template = C4::Patroncards::Template->retrieve(template_id => $template_id); @@ -76,7 +76,7 @@ elsif ($op eq 'save') { $old_profile->set_attr(template_id => 0); $old_profile->save(); } - my $new_profile = C4::Patroncards::Profile->retrieve(profile_id => $cgi->param('profile_id')); + my $new_profile = C4::Patroncards::Profile->retrieve(profile_id => scalar $cgi->param('profile_id')); $new_profile->set_attr(template_id => $card_template->get_attr('template_id')); $new_profile->save(); } @@ -88,7 +88,7 @@ elsif ($op eq 'save') { die "Error: $card_template\n" if !ref($card_template); my $template_id = $card_template->save(); if ($cgi->param('profile_id')) { - my $profile = C4::Patroncards::Profile->retrieve(profile_id => $cgi->param('profile_id')); + my $profile = C4::Patroncards::Profile->retrieve(profile_id => scalar $cgi->param('profile_id')); $profile->set_attr(template_id => $template_id) if $template_id != $profile->get_attr('template_id'); $profile->save(); }