mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-22 10:56:31 +00:00
Update functions.php
This commit is contained in:
@@ -720,15 +720,17 @@ function format_string ($format, $data) {
|
||||
|
||||
//get the format and use it to format the phone number
|
||||
function format_phone($phone_number) {
|
||||
$phone_number = trim($phone_number, ' +');
|
||||
if (is_numeric($phone_number)) {
|
||||
if (isset($_SESSION["format"]["phone"])) foreach ($_SESSION["format"]["phone"] as &$format) {
|
||||
$format_count = substr_count($format, 'x');
|
||||
$format_count = $format_count + substr_count($format, 'R');
|
||||
$format_count = $format_count + substr_count($format, 'r');
|
||||
if ($format_count == strlen($phone_number)) {
|
||||
//format the number
|
||||
$phone_number = format_string($format, $phone_number);
|
||||
if (is_numeric(trim($phone_number, ' +'))) {
|
||||
if (isset($_SESSION["format"]["phone"])) {
|
||||
$phone_number = trim($phone_number, ' +');
|
||||
foreach ($_SESSION["format"]["phone"] as &$format) {
|
||||
$format_count = substr_count($format, 'x');
|
||||
$format_count = $format_count + substr_count($format, 'R');
|
||||
$format_count = $format_count + substr_count($format, 'r');
|
||||
if ($format_count == strlen($phone_number)) {
|
||||
//format the number
|
||||
$phone_number = format_string($format, $phone_number);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user