From: SourceForge.net <no...@so...> - 2012-07-07 17:28:03
|
Bugs item #3541171, was opened at 2012-07-07 10:28 Message generated for change (Tracker Item Submitted) made by cesag You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=3541171&group_id=41586 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Modules - Profile Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Cesag (cesag) Assigned to: Nobody/Anonymous (nobody) Summary: User Profile module 1.63 added fields that do not save in DB Initial Comment: There is a bug with added fields in the table profile_profile, in Xoops 2.5.5 Profile module 1.63. Solved by black_beard (montuy33753) : In the file /modules/profile/class/field.php , you must make a modifcation to the line 513 if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (!isset($_REQUEST['field_required']))) { with if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (isset($_REQUEST['field_required']))) { See : http://xoops.org/modules/newbb/viewtopic.php?post_id=347497#forumpost347497 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=3541171&group_id=41586 |