-
Bug
-
Resolution: Fixed
-
Minor
-
3.9.4
-
MOODLE_39_STABLE
-
MOODLE_310_STABLE, MOODLE_39_STABLE
-
MDL-71026-master -
-
Moppies Kanban
A problem case that we encounter generates the following error:
extralocations parameter in get_string() is not supported any more, please use standard lang locations only.
|
|
line 7366 of /lib/moodlelib.php: call to debugging() line 207 of /user/editadvanced.php: call to get_string()
|
Invalid get_string() identifier: 'cannotupdatepasswordonextauth' or component 'moodle'. Perhaps you are missing $string['cannotupdatepasswordonextauth'] = ''; in lang/en/moodle.php?
|
|
line 353 of /lib/classes/string_manager_standard.php: call to debugging() line 7394 of /lib/moodlelib.php: call to core_string_manager_standard->get_string() line 207 of /user/editadvanced.php: call to get_string()
|
[[cannotupdatepasswordonextauth]]
|
|
line 207 of /user/editadvanced.php: call to debugging()
|
|
There are 2 separate bugs here :
- The badly formed call to get_string()
- The missing string definition for cannotupdatepasswordonextauth
The offending line (/user/editadvanced.php line 207) is the following:
debugging(get_string('cannotupdatepasswordonextauth', '', '', $usernew->auth), DEBUG_NONE); |