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

@@ -68,6 +68,7 @@ class UserProfileController extends mfBaseController
$id = $this->me->id;
$emailaddress = $this->me->email;
$mobile = str_replace('+', '', $this->me->mobile);
$mobile = str_replace(' ', '', $mobile);
$verification = $r->twofactor;
$User = new User($id);
@@ -207,6 +208,7 @@ class UserProfileController extends mfBaseController
$id = $this->me->id;
$emailaddress = $this->me->email;
$mobile = str_replace('+', '', $this->me->mobile);
$mobile = str_replace(' ', '', $mobile);
$verification = $r->twofactor;
$User = new User($id);