Bug 15415: Warn when creating a new print profile
authorAleisha Amohia <aleishaamohia@hotmail.com>
Fri, 2 Dec 2016 03:04:07 +0000 (03:04 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 23 Dec 2016 11:28:01 +0000 (11:28 +0000)
As per Jonathan's comment in Comment 3, I've put that line of code in an
if statement that will only call the get_attr method if we are editing
an existing profile (therefore the profile id will exist).

To test:
1) Go to Tools -> Patron Card Creator -> New printer profile
2) Notice warn
3) Apply patch
4) Refresh page
5) Confirm warn is gone and page still works as expected

Sponsored-by: Catalyst IT
Signed-off-by: Marc VĂ©ron <veron@veron.ch>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
patroncards/edit-profile.pl

index 55e903c..0dc312f 100755 (executable)
@@ -88,7 +88,9 @@ foreach my $unit (@$units) {
     }
 }
 
-$template->param(profile_id => $profile->get_attr('profile_id')) if $profile->get_attr('profile_id') > 0;
+if ($profile_id) { # if new layout, there will be no profile id, so shouldn't look for it
+    $template->param(profile_id => $profile->get_attr('profile_id')) if $profile->get_attr('profile_id') > 0;
+}
 
 $template->param(
     label_template      => $label_template[0]->{'template_code'} || '',