mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-63354 Group: Rollover text on long group names is not consistent
This commit is contained in:
parent
6e2e63457e
commit
83f9f83a55
@ -92,7 +92,8 @@ $currentmembersoptions = '';
|
||||
$currentmemberscount = 0;
|
||||
if ($currentmembers) {
|
||||
foreach($currentmembers as $group) {
|
||||
$currentmembersoptions .= '<option value="'.$group->id.'.">'.format_string($group->name).'</option>';
|
||||
$currentmembersoptions .= '<option value="' . $group->id . '." title="' . format_string($group->name) . '">' .
|
||||
format_string($group->name) . '</option>';
|
||||
$currentmemberscount ++;
|
||||
}
|
||||
|
||||
@ -112,7 +113,8 @@ $potentialmembersoptions = '';
|
||||
$potentialmemberscount = 0;
|
||||
if ($potentialmembers) {
|
||||
foreach($potentialmembers as $group) {
|
||||
$potentialmembersoptions .= '<option value="'.$group->id.'.">'.format_string($group->name).'</option>';
|
||||
$potentialmembersoptions .= '<option value="' . $group->id . '." title="' . format_string($group->name) . '">' .
|
||||
format_string($group->name) . '</option>';
|
||||
$potentialmemberscount ++;
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user