mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 04:22:07 +02:00
MDL-61658 user: Fix displaying of user's country name
In these cases we want to use the method get_list_of_countries() to obtain translated names of all potential country codes. The country code is already there in the database. So it does not matter if the country is among those whitelisted in $CFG->allcountrycodes - we want to see its name anyway.
This commit is contained in:
parent
60e213470d
commit
0c98acefc1
@ -246,7 +246,7 @@
|
||||
|
||||
} else {
|
||||
|
||||
$countries = get_string_manager()->get_list_of_countries(false);
|
||||
$countries = get_string_manager()->get_list_of_countries(true);
|
||||
if (empty($mnethosts)) {
|
||||
$mnethosts = $DB->get_records('mnet_host', null, 'id', 'id,wwwroot,name');
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ class block_myprofile extends block_base {
|
||||
$this->content->text .= '<div class="myprofileitem fullname">'.fullname($USER).'</div>';
|
||||
|
||||
if(!isset($this->config->display_country) || $this->config->display_country == 1) {
|
||||
$countries = get_string_manager()->get_list_of_countries();
|
||||
$countries = get_string_manager()->get_list_of_countries(true);
|
||||
if (isset($countries[$USER->country])) {
|
||||
$this->content->text .= '<div class="myprofileitem country">';
|
||||
$this->content->text .= get_string('country') . ': ' . $countries[$USER->country];
|
||||
|
@ -229,7 +229,7 @@ class participants_table extends \table_sql {
|
||||
$this->enrolid = $enrolid;
|
||||
$this->status = $status;
|
||||
$this->selectall = $selectall;
|
||||
$this->countries = get_string_manager()->get_list_of_countries();
|
||||
$this->countries = get_string_manager()->get_list_of_countries(true);
|
||||
$this->extrafields = $extrafields;
|
||||
$this->context = $context;
|
||||
if ($canseegroups) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user