https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29697 --- Comment #67 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- (In reply to Marcel de Rooy from comment #60)
(In reply to Jonathan Druart from comment #59)
(In reply to Marcel de Rooy from comment #48)
+my $invalid_marc_record = $@ || !$marc_record; +if ($invalid_marc_record) { + $template->param( decoding_error => $@ );
Theoretically $@ might be empty but there is not $marc_record. So you could provide a fallback for no error message in the last line..
Indeed. No idea what's better. Do you think we need to pass another variable to the template (invalid_marc_record set to 1)?
Or just $@ // 'some great message' to keep it simple and not touch the template?
An untranslatable message? :) -- You are receiving this mail because: You are watching all bug changes.