From: Kyle M Hall Date: Fri, 29 Aug 2014 14:38:31 +0000 (-0400) Subject: Bug 3186 [QA Followup] - Don't return undef, just return X-Git-Tag: v3.18.00-beta~231 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=394d16001d0a4547cddae75a78ec240a83d3fe7d;p=koha_ffzg Bug 3186 [QA Followup] - Don't return undef, just return Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- diff --git a/C4/SMS.pm b/C4/SMS.pm index 3a861a764d..34cce27f61 100644 --- a/C4/SMS.pm +++ b/C4/SMS.pm @@ -93,7 +93,7 @@ sub send_sms { #Catch those errors and fail the sms-sending gracefully. if ($@) { warn $@; - return undef; + return; } # warn 'failure' unless $sent; return $sent;