Mobilnummern mit Leerzeichen bereinigung/Zeiterfassung Erweiterungen

This commit is contained in:
Spitzer Daniel
2024-01-10 13:13:23 +01:00
parent fccb15888f
commit ff2e311666
7 changed files with 54 additions and 2 deletions

View File

@@ -61,6 +61,7 @@ class UserTwofactor
$User = new User($id);
$emailaddress = $User->email;
$mobile = str_replace('+', '', $User->mobile);
$mobile = str_replace(' ', '', $mobile);
$data = [];
$data['twofactorcode'] = $code;