We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I wanted to ignore e.g. the mobile numbers, because I'm no programmer and break 2 maybe unwated, no fork and pull ...
break 2
See <--- in this excerpt from Converter.php
<---
$ignoreTypes = $this->config['ignoreTypes'] ?? []; // <--- $phoneTypes = $this->config['phoneTypes'] ?? []; foreach ($card->TEL as $key => $number) { // format number $number = $this->convertPhonenumber($number); // get type $type = 'other'; $telTypes = strtoupper($card->TEL[$key]->parameters['TYPE'] ?? ''); foreach ($ignoreTypes as $ignoreType) { // <--- if (strpos($telTypes, strtoupper($ignoreType)) !== false) { break 2; } }
Thanks, regards D.J.
The text was updated successfully, but these errors were encountered:
resolves andig#198
fc00644
Successfully merging a pull request may close this issue.
Hello, I wanted to ignore e.g. the mobile numbers, because I'm no programmer and
break 2
maybe unwated, no fork and pull ...See
<---
in this excerpt from Converter.phpThanks, regards D.J.
The text was updated successfully, but these errors were encountered: