Details
-
Type:
Sub-task
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 2.0.3, 2.2
-
Component/s: Language
-
Labels:
-
Testing Instructions:
-
Difficulty:Easy
-
Affected Branches:MOODLE_20_STABLE, MOODLE_22_STABLE
-
Fixed Branches:MOODLE_21_STABLE, MOODLE_22_STABLE
-
Pull from Repository:
-
Pull Master Branch:m_
MDL-27654_add_space_to_somefieldrequired_string
Description
Moodle forms with required field display at its bottom right:
There are required fields in this form marked*.
A space between "marked" and the asterisk is missing.
It is only matter of changing the string
$string['somefieldsrequired']
of the file moodle20/lang/en/form.php
from
$string['somefieldsrequired'] = 'There are required fields in this form marked{$a}.';
to
$string['somefieldsrequired'] = 'There are required fields in this form marked {$a}.';