From: Kyle M Hall Date: Fri, 16 Aug 2013 11:21:10 +0000 (-0400) Subject: Bug 10664 [QA Followup] - fix error in overdue_notices.pl if there is no active currency X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=e476378323eb8dd31e67e4741d271d88de61b59e;p=koha.git Bug 10664 [QA Followup] - fix error in overdue_notices.pl if there is no active currency Fixes the following koha-qa.pl error: FAIL misc/cronjobs/overdue_notices.pl OK pod OK forbidden patterns OK valid FAIL critic # Variables::ProhibitConditionalDeclarations: Signed-off-by: Galen Charlton --- diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl index 04ccf5a045..0f263c4e11 100755 --- a/misc/cronjobs/overdue_notices.pl +++ b/misc/cronjobs/overdue_notices.pl @@ -689,7 +689,8 @@ sub parse_letter { } my $currencies = GetCurrency(); - my $currency_format = $currencies->{currency} if defined($currencies); + my $currency_format; + $currency_format = $currencies->{currency} if defined($currencies); my @item_tables; if ( my $i = $params->{'items'} ) {