09-28-2016, 11:52 AM
Hi,
Sorry, still using Version 4.1.3. After adding and deleting several users, I noticed that editing the bio in edit_profile.php had no effect, i.e. nothing has been written to the data base.
Thus, I found that in the data base in the profiles tab, the id and the user_id can differ.
So I think that in edit_profile.php the data base update has to use the id and not the user_id.
A change of
to
worked for me.
Cheers,
Sebastian
Sorry, still using Version 4.1.3. After adding and deleting several users, I noticed that editing the bio in edit_profile.php had no effect, i.e. nothing has been written to the data base.
Thus, I found that in the data base in the profiles tab, the id and the user_id can differ.
So I think that in edit_profile.php the data base update has to use the id and not the user_id.
A change of
Code:
$db->update('profiles',$userID,$fields);
Code:
$db->update('profiles',$thisProfile->id,$fields);
Cheers,
Sebastian