From 85b5ffd8d5179c42808f53b12428f2ca84aa36fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Arroyo?= Date: Tue, 1 Feb 2022 09:45:16 +0100 Subject: [PATCH] fix: Use the proper form container name for the change password form (#3373) --- actions/class.UserSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/class.UserSettings.php b/actions/class.UserSettings.php index 7af949c4c4..b1373b2830 100644 --- a/actions/class.UserSettings.php +++ b/actions/class.UserSettings.php @@ -66,7 +66,7 @@ public function password() $this->setData('message', __('Password changed')); } - $this->setData('myForm', $passwordForm->render()); + $this->setData('settingsForm', $passwordForm->render()); } $this->setView('form/settings_user.tpl');