From 51a775e732880041f90e3d721adda4973276812b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar?= Date: Fri, 27 May 2022 12:49:25 +0200 Subject: [PATCH] Skip requirement for password when changing the current user fields --- CRM/Utils/System/Drupal8.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Utils/System/Drupal8.php b/CRM/Utils/System/Drupal8.php index 61ded6086528..df27c0d9e44a 100644 --- a/CRM/Utils/System/Drupal8.php +++ b/CRM/Utils/System/Drupal8.php @@ -114,6 +114,9 @@ public function updateCMSName($ufID, $email) { if ($user && $user->getEmail() != $email) { $user->setEmail($email); + // Skip requirement for password when changing the current user fields + $user->_skipProtectedUserFieldConstraint = TRUE; + if (!count($user->validate())) { $user->save(); }