Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.0, 2.1
-
MOODLE_20_STABLE, MOODLE_21_STABLE
-
MOODLE_21_STABLE, MOODLE_22_STABLE
-
MDL-30198-master -
Easy
-
- Create a Glossary if you don't already have one
- Goto Glossary settings>import
- Make sure you Get "Destination of imported entries" as the label for the select menu
Description
The title label "Current glossary" on "Import entries from XML file" page needs to be fixed as below.
Program file: /mod/glossary/import_form.php
Line: 20
before |
$mform->addElement('select', 'dest', get_string('currentglossary', 'glossary'), $options);
|
after |
$mform->addElement('select', 'dest', get_string('destination', 'glossary'), $options);
|