We found the bug , this will be fixed in our next release .
For now , you can do the following for a quick fix:
Go to codoforum/sys/Controller/user.php
Around line 141 in edit_profile() method ,
replace
$edited = $edit->set($id, $values);
with
$edited = $edit->set($values);
We found the bug , this will be fixed in our next release .
For now , you can do the following for a quick fix:
Go to codoforum/sys/Controller/user.php
Around line 141 in edit_profile() method ,
replace
````
$edited = $edit->set($id, $values);
````
with
````
$edited = $edit->set($values);
````
Necessity is the mother of all inventions!