-
Bug
-
Resolution: Fixed
-
Critical
-
2.7.5, 2.8.3, 2.9
-
MOODLE_27_STABLE, MOODLE_28_STABLE, MOODLE_29_STABLE
-
MOODLE_27_STABLE, MOODLE_28_STABLE
-
MDL-49169_master -
If you save a user profile with "edit.php" the description field is not saved.
In the if condition for "the file_postupdate_standard_editor" call is a small failure.
The line:
if (isset($usernew->description_editor) && isset($usernew->description_format)) {
must be like:
if (isset($usernew->description_editor) && isset($usernew->description_editor['format'])) {
- is a regression caused by
-
MDL-48978 User Description Field breaks in 2.8.2
- Closed