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

@ -144,7 +144,7 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 15th September, 2020
+ *Last Build*: 18th September, 2020
+ *Version*: 2.11.6
+ *Copyright*: Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt

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 );";