@@ -, +, @@ --- C4/SMS.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/C4/SMS.pm +++ a/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; --