diff --git a/typo3/sysext/core/Classes/LinkHandling/TelephoneLinkHandler.php b/typo3/sysext/core/Classes/LinkHandling/TelephoneLinkHandler.php index 05e4cc58d76463a22882a9d13a1cb532863b4c87..717a242641ae41714d46998c69ce3673eb086b5b 100644 --- a/typo3/sysext/core/Classes/LinkHandling/TelephoneLinkHandler.php +++ b/typo3/sysext/core/Classes/LinkHandling/TelephoneLinkHandler.php @@ -27,7 +27,7 @@ class TelephoneLinkHandler implements LinkHandlingInterface */ public function asString(array $parameters): string { - $telephoneNumber = preg_replace('/(?:[^\d\+]+)/', '', $parameters['telephone']); + $telephoneNumber = preg_replace('/(?:[^\d\+,;]+)/', '', $parameters['telephone']); return 'tel:' . $telephoneNumber; } diff --git a/typo3/sysext/core/Tests/Unit/LinkHandling/TelephoneLinkHandlerTest.php b/typo3/sysext/core/Tests/Unit/LinkHandling/TelephoneLinkHandlerTest.php index 7b568b6ac8508f9e21026d9b07f563aee44fd321..7edf5833896030c10e55adf6048c23c843415ab4 100644 --- a/typo3/sysext/core/Tests/Unit/LinkHandling/TelephoneLinkHandlerTest.php +++ b/typo3/sysext/core/Tests/Unit/LinkHandling/TelephoneLinkHandlerTest.php @@ -67,6 +67,15 @@ final class TelephoneLinkHandlerTest extends UnitTestCase ], 'tel:+43123455678', ], + 'telephone number with comma and semicolon' => [ + [ + 'telephone' => 'tel:+43 123 45 56 78,; 1234', + ], + [ + 'telephone' => '+43 123 45 56 78,; 1234', + ], + 'tel:+43123455678,;1234', + ], ]; }