Skip to content

Commit

Permalink
Fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
coudot committed Mar 14, 2024
1 parent 0ab603b commit 7c534f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/sendsms.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@

function sanitize_number($phone_number){
$phone_number = preg_replace('/[^0-9]/', '', $phone_number);
return $pĥone_number;
return $phone_number;
}

function truncate_number($phone_number){
$phone_number = substr($phone_number, -$sms_truncate_number_length);
return $pĥone_number;
return $phone_number;
}


Expand Down

0 comments on commit 7c534f5

Please sign in to comment.