-
Sub-task
-
Resolution: Fixed
-
Minor
-
2.0.4, 2.1.1, 2.2
-
Any
-
MOODLE_20_STABLE, MOODLE_21_STABLE, MOODLE_22_STABLE
-
MOODLE_22_STABLE
-
master_
MDL-27624 -
When a user chooses to see track details , a bunch of data elements name are show. Which doesn't make any sense to normal user. The code to convert this data element into a string is present in the reporting as shown below:-
$row[] = get_string($element, 'scorm') != '[['.$element.']]' ? get_string($element, 'scorm') : $element;
{/quote}But those elements are not defined in the language files thus ,get_String is actually of no use here.
This should be handled in a better way and if possible a description of common data elements should be provided to the user as well.