Skip to content

Commit

Permalink
Hiding icon as per bug 3098
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed May 3, 2005
1 parent ebe427c commit 2c27cd1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions user/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,11 @@
print_group_picture($group, $course->id, true, false, false);
echo '</td><td class="content">';
echo '<h3>'.$group->name;
echo '&nbsp;<a title="'.get_string('editgroupprofile').'" href="../course/groups.php?id='.$course->id.'&amp;group='.$group->id.'">';
echo '<img src="'.$CFG->pixpath.'/t/edit.gif" alt="" border="0">';
echo '</a>';
if (isteacheredit($course->id)) {
echo '&nbsp;<a title="'.get_string('editgroupprofile').'" href="../course/groups.php?id='.$course->id.'&amp;group='.$group->id.'">';
echo '<img src="'.$CFG->pixpath.'/t/edit.gif" alt="" border="0">';
echo '</a>';
}
echo '</h3>';
echo format_text($group->description);
echo '</td></tr></table>';
Expand Down

0 comments on commit 2c27cd1

Please sign in to comment.