View | Details | Raw Unified | Return to bug 3186
Collapse All | Expand All

(-)a/C4/SMS.pm (-2 / +1 lines)
Lines 93-99 sub send_sms { Link Here
93
    #Catch those errors and fail the sms-sending gracefully.
93
    #Catch those errors and fail the sms-sending gracefully.
94
    if ($@) {
94
    if ($@) {
95
        warn $@;
95
        warn $@;
96
        return undef;
96
        return;
97
    }
97
    }
98
    # warn 'failure' unless $sent;
98
    # warn 'failure' unless $sent;
99
    return $sent;
99
    return $sent;
100
- 

Return to bug 3186