Bug 7298: (follow-up) fix uninitialized variable warning
[koha.git] / labels / label-edit-profile.pl
index baaeb8a..59c6abc 100755 (executable)
@@ -25,8 +25,8 @@ use CGI;
 
 use C4::Auth qw(get_template_and_user);
 use C4::Output qw(output_html_with_http_headers);
-use C4::Creators 1.000000;
-use C4::Labels 1.000000;
+use C4::Creators;
+use C4::Labels;
 
 my $cgi = new CGI;
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
@@ -54,13 +54,13 @@ if ($op eq 'edit') {
 }
 elsif ($op eq 'save') {
     my @params = (
-        printer_name        => $cgi->param('printer_name'),
-        paper_bin           => $cgi->param('paper_bin'),
-        offset_horz         => $cgi->param('offset_horz'),
-        offset_vert         => $cgi->param('offset_vert'),
-        creep_horz          => $cgi->param('creep_horz'),
-        creep_vert          => $cgi->param('creep_vert'),
-        units               => $cgi->param('units'),
+        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',
     );
     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);