Update the user updater helper method to all password change, since Joomla changed the user save method in the user class.

This commit is contained in:
2020-09-18 07:18:04 +02:00
parent 2fa1d15939
commit ac86c8c56b
4 changed files with 4 additions and 4 deletions

View File

@ -2143,7 +2143,7 @@ class Interpretation extends Fields
$method[] = $this->_t(3) . "'name' => \$new['name'],";
$method[] = $this->_t(3) . "'email' => \$new['email'],";
$method[] = $this->_t(3)
. "'password1' => \$password, // First password field";
. "'password' => \$password, // First password field";
$method[] = $this->_t(3)
. "'password2' => \$password2, // Confirm password field";
$method[] = $this->_t(3) . "'block' => 0 );";