Files
fusionpbx/app
SJS87 40a3613cd7 E.164 format support - contact_phone_edit.php (#1581)
The + prefix is being removed, this should be ignored for the very start of the string, resolution below.

Line 69.
Replace:
$phone_number = preg_replace('{\D}', '', $phone_number);
With:
$phone_number = preg_replace('{(?!^\+)[\D]}', '', $phone_number);
2016-05-13 08:42:34 -06:00
..
2016-05-06 01:49:43 -06:00
2016-04-25 20:30:23 -05:00
2016-05-10 12:56:33 -06:00
2016-05-10 22:53:42 -06:00
2016-05-11 18:42:30 -06:00