projects
/
koha.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9cdc1d
)
Bug 30838: (QA follow-up) Add missing semicolon
author
Kyle Hall
<kyle@bywatersolutions.com>
Tue, 28 Jun 2022 11:27:17 +0000
(07:27 -0400)
committer
Tomas 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
patch
|
blob
|
history
diff --git
a/C4/Message.pm
b/C4/Message.pm
index 3ac8f21dc3a39897f5c4e7763ee65dd1ac3d51d2..7a55152e05652e8afac2918b97285c6d705efddb 100644
(file)
--- a/
C4/Message.pm
+++ b/
C4/Message.pm
@@
-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.";
}