Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.0.3, 2.1
-
Component/s: Assignment (2.2), Language
-
Database:Any
-
Testing Instructions:
-
Workaround:
-
Difficulty:Easy
-
Affected Branches:MOODLE_20_STABLE, MOODLE_21_STABLE
-
Fixed Branches:MOODLE_20_STABLE, MOODLE_21_STABLE
-
Pull from Repository:
-
Pull Master Branch:wip-
MDL-27754-master -
Pull Master Diff URL:
Description
The feedback from teacher string in the assignment module has the word 'the' in it so that if I were to grade a student I this would be presented as
Feedback from the James Ballard
While I am a James Ballard I am not sure I am "the" James Ballard.
$string['feedbackfromteacher'] = 'Feedback from the {$a}';
|
Should be
$string['feedbackfromteacher'] = 'Feedback from {$a}';
|