Open mheidt opened 11 years ago
If you are using the country code with a plus sign, it is not transfered to the fritzbox.
solution: private function _clear_phone_number($number) { return preg_replace("/[^0-9+]/", "", $number); }
Maybe it would be better to replace the plus sign (+) with 00, which should be equal.
If you are using the country code with a plus sign, it is not transfered to the fritzbox.
solution: private function _clear_phone_number($number) { return preg_replace("/[^0-9+]/", "", $number); }