Fix checking for return. #658

This commit is contained in:
Korina Cordero 2022-04-12 10:01:14 +00:00
parent 6fff162c0e
commit b712b35a97

View file

@ -36,7 +36,7 @@ class RisingTideGateway
// at this point, assume that mobile is numeric and valid mobile number
$clean_num = $this->cleanPhoneNumber($mobile_num);
if ($clean_num == false)
if ($clean_num === false)
error_log('Invalid mobile number provided. Cannot send SMS message to ' . $mobile_num);
else
{