Remove the + from the format_phone function.
This commit is contained in:
parent
2c4101e8d0
commit
122f0bb0a2
|
|
@ -835,6 +835,8 @@ function format_string ($format, $data) {
|
||||||
|
|
||||||
//get the format and use it to format the phone number
|
//get the format and use it to format the phone number
|
||||||
function format_phone($phone_number) {
|
function format_phone($phone_number) {
|
||||||
|
$phone_number = trim($phone_number, "+");
|
||||||
|
if (is_numeric($phone_number)) {
|
||||||
foreach ($_SESSION["format"]["phone"] as &$format) {
|
foreach ($_SESSION["format"]["phone"] as &$format) {
|
||||||
$format_count = substr_count($format, 'x');
|
$format_count = substr_count($format, 'x');
|
||||||
$format_count = $format_count + substr_count($format, 'R');
|
$format_count = $format_count + substr_count($format, 'R');
|
||||||
|
|
@ -844,6 +846,7 @@ function format_string ($format, $data) {
|
||||||
$phone_number = format_string($format, $phone_number);
|
$phone_number = format_string($format, $phone_number);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return $phone_number;
|
return $phone_number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue