MDL-85312 profilefield_menu: remove locked field option formatting.
We shouldn't be formatting the option key when setting constant value, because that isn't formatted - only the option value is.
This commit is contained in:
@@ -134,7 +134,7 @@ class profile_field_menu extends profile_field_base {
|
||||
}
|
||||
if ($this->is_locked() and !has_capability('moodle/user:update', context_system::instance())) {
|
||||
$mform->hardFreeze($this->inputname);
|
||||
$mform->setConstant($this->inputname, format_string($this->datakey));
|
||||
$mform->setConstant($this->inputname, $this->datakey);
|
||||
}
|
||||
}
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user