mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-48269 group: Remove the option to hide the picture of a group
Plus additional amendments to Fred's original commit: 1. Updating the version numbers 2. Merging the original two-step upgrade below into one for simplicity: 1. Deleting the pictures for groups with hidepicture set to 1; and 2. Dropping the hidepicture field itself. 3. Converted array() usages to the short syntax [].
This commit is contained in:
parent
41037efa7a
commit
3aed37ee4d
8 changed files with 62 additions and 13 deletions
|
@ -2450,7 +2450,7 @@ function forum_print_discussion_header(&$post, $forum, $group = -1, $datestring
|
|||
// Group picture
|
||||
if ($group !== -1) { // Groups are active - group is a group data object or NULL
|
||||
echo '<td class="picture group">';
|
||||
if (!empty($group->picture) and empty($group->hidepicture)) {
|
||||
if (!empty($group->picture)) {
|
||||
if ($canviewparticipants && $COURSE->groupmode) {
|
||||
$picturelink = true;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue