Search found 1 match

by OutBoxFactory.com
31 Dec 2021, 18:18
Forum: Help
Topic: disabled users
Replies: 2
Views: 3806

Re: disabled users

I found the solution:

In manage_user_update.php replace this

user_ensure_email_unique( $t_email, $f_user_id );

with

if($t_old_email != $t_email){
user_ensure_email_unique( $t_email, $f_user_id );
}