Hi,
I recently upgraded from Joomla 2.5.17 to 2.5.28 + CB 1.9.1, so this upgrade included the new password handling. I also updated CB Core Fields Ajax to 1.60
Everything OK, but Password field is not being updated via AJAX, and I need it that way. It worked before!
I looked in cbcorefieldsajax.php and has these lines:
if ( $field->get( 'name' ) == 'password' ) {
$clearTextPassword = $user->get( 'password' );
$user->set( 'password', $user->hashAndSaltPassword( $clearTextPassword ) );
Is it not saving because hashAndSalt is old encryption method?
Any thougths? Thank you
VR