mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
Reverting previous commit that broke code that depended on the absence of parameter
This commit is contained in:
parent
d5ef313659
commit
f99442e312
@ -5090,7 +5090,7 @@ or
|
||||
* @param array $extralocations An array of strings with other locations to look for string files
|
||||
* @return string The localized string.
|
||||
*/
|
||||
function get_string($identifier, $module='moodle', $a=NULL, $extralocations=NULL) {
|
||||
function get_string($identifier, $module='', $a=NULL, $extralocations=NULL) {
|
||||
global $CFG;
|
||||
|
||||
/// originally these special strings were stored in moodle.php now we are only in langconfig.php
|
||||
@ -5109,6 +5109,10 @@ function get_string($identifier, $module='moodle', $a=NULL, $extralocations=NULL
|
||||
|
||||
$lang = current_language();
|
||||
|
||||
if ($module == '') {
|
||||
$module = 'moodle';
|
||||
}
|
||||
|
||||
// if $a happens to have % in it, double it so sprintf() doesn't break
|
||||
if ($a) {
|
||||
$a = clean_getstring_data( $a );
|
||||
|
Loading…
x
Reference in New Issue
Block a user