X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=labels%2Flabel-edit-profile.pl;h=07e34caf1d2ad512a3c31afdabdc5f26bbf1d221;hb=828ab70be705b5bc90d995dabf7787e608bd51e0;hp=59c6abcfd5c0d269d713604d43aa15a52b088572;hpb=98a207ef955effae8d6b26a1c74bddd9a3c9a801;p=koha.git diff --git a/labels/label-edit-profile.pl b/labels/label-edit-profile.pl index 59c6abcfd5..07e34caf1d 100755 --- a/labels/label-edit-profile.pl +++ b/labels/label-edit-profile.pl @@ -5,23 +5,22 @@ # # 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 Modern::Perl; -use CGI; +use CGI qw ( -utf8 ); use C4::Auth qw(get_template_and_user); use C4::Output qw(output_html_with_http_headers); @@ -31,7 +30,7 @@ use C4::Labels; my $cgi = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { - template_name => "labels/label-edit-profile.tmpl", + template_name => "labels/label-edit-profile.tt", query => $cgi, type => "intranet", authnotrequired => 0, @@ -50,17 +49,17 @@ my $units = get_unit_values(); if ($op eq 'edit') { $profile = C4::Labels::Profile->retrieve(profile_id => $profile_id); - $template_list = get_all_templates(table_name => 'creator_templates', field_list => 'template_id,template_code, profile_id'); + $template_list = get_all_templates( { fields => [ qw( template_id template_code profile_id) ] } ); } elsif ($op eq 'save') { my @params = ( - printer_name => $cgi->param('printer_name') || 'DEFAULT PRINTER', - paper_bin => $cgi->param('paper_bin') || 'Tray 1', - offset_horz => $cgi->param('offset_horz') || 0, - offset_vert => $cgi->param('offset_vert') || 0, - creep_horz => $cgi->param('creep_horz') || 0, - creep_vert => $cgi->param('creep_vert') || 0, - units => $cgi->param('units') || 'POINT', + printer_name => scalar $cgi->param('printer_name') || 'DEFAULT PRINTER', + paper_bin => scalar $cgi->param('paper_bin') || 'Tray 1', + offset_horz => scalar $cgi->param('offset_horz') || 0, + offset_vert => scalar $cgi->param('offset_vert') || 0, + creep_horz => scalar $cgi->param('creep_horz') || 0, + creep_vert => scalar $cgi->param('creep_vert') || 0, + units => scalar $cgi->param('units') || 'POINT', ); if ($profile_id) { # if a label_id was passed in, this is an update to an existing layout $profile = C4::Labels::Profile->retrieve(profile_id => $profile_id);