From ebbbe1114ce0ed47108249642ad7497daecaf07d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 May 2014 15:41:31 +0200 Subject: [PATCH] Bug 11867: FIX message_transport_type parameter for Itiva cronjob The message_transport_type param should passed to GetPreparedLetter, not part of the "tables" parameter. --- misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl b/misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl index 42728d6..ba1b8f2 100755 --- a/misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl +++ b/misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl @@ -134,8 +134,8 @@ foreach my $type (@types) { borrowers => $issues->{'borrowernumber'}, biblio => $issues->{'biblionumber'}, biblioitems => $issues->{'biblionumber'}, - message_transport_type => 'phone', }, + message_transport_type => 'phone', ); die "No letter found for type $type!... dying\n" unless $letter; -- 1.7.10.4