From 6d108752867d8cb951206c4514fa83ac7fcd3c25 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Fri, 29 Aug 2014 10:38:31 -0400
Subject: [PATCH] [PASSED QA] Bug 3186 [QA Followup] - Don't return undef, just return

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
---
 C4/SMS.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/SMS.pm b/C4/SMS.pm
index 3a861a7..34cce27 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;
-- 
1.7.2.5