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:
Paul Holden
2025-08-12 08:34:27 +01:00
parent 621c6e1048
commit 66f05f2b9e
@@ -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);
}
}
/**