MDL-78417 tool_uploaduser: handle empty default in custom menu field.

This commit is contained in:
Paul Holden 2023-12-18 22:37:00 +00:00
parent 580c009cac
commit b2da42527a
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164

View File

@ -367,6 +367,11 @@ class cli_helper {
$firstoption = reset($selectoptions);
$default = $firstoption['attr']['value'];
}
// The menu profile field type allows for an empty default value, handle that here.
if (preg_match('/^profile_field_/', $name) && $default === '') {
$possiblevalues[] = $default;
}
}
if ($element instanceof \HTML_QuickForm_checkbox) {