Bug 30838: (QA follow-up) Add missing semicolon
authorKyle Hall <kyle@bywatersolutions.com>
Tue, 28 Jun 2022 11:27:17 +0000 (07:27 -0400)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 22 Jul 2022 17:45:59 +0000 (14:45 -0300)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
C4/Message.pm

index 3ac8f21dc3a39897f5c4e7763ee65dd1ac3d51d2..7a55152e05652e8afac2918b97285c6d705efddb 100644 (file)
@@ -184,7 +184,7 @@ sub _to_address {
             || $borrower->{emailpro}
             || $borrower->{B_email};
     } elsif ($transport eq 'sms') {
-        $address = $borrower->{smsalertnumber}
+        $address = $borrower->{smsalertnumber};
     } else {
         warn "'$transport' is an unknown message transport.";
     }