-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
3.9.3, 3.10
-
MOODLE_310_STABLE, MOODLE_39_STABLE
Noticed this when landing the fix in MDL-70041.
Basically, the changes made to lib/form/filemanager.js in MDL-45184 (specifically, this code) seem to have no impact, as we'll always have a file node when populating licenses within the file manager. As far as I can tell, that only happens when you click a file in the manager.
For posterity, we're talking about the else if in this code from within populateLicensesSelect.
if (filenode) { |
// File has a license already, use it. |
selectedlicense = filenode.license;
|
} else if (this.filepicker_options.rememberuserlicensepref) { |
selectedlicense = this.get_preference('recentlicense'); |
}
|
- has a non-specific relationship to
-
MDL-45184 Create user interface to add/delete new licenses
- Closed