From 426bcc164b2f6cf4ca5d726c025dbdee819375d8 Mon Sep 17 00:00:00 2001 From: moodler Date: Sun, 4 Mar 2007 06:32:04 +0000 Subject: [PATCH] Merged xhtml fix from stable MDL-7861 --- lib/weblib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index 9a0dde057b..77cd020183 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -3384,10 +3384,10 @@ function print_group_picture($group, $courseid, $large=false, $return=false, $li } if ($group->picture) { // Print custom group picture if ($CFG->slasharguments) { // Use this method if possible for better caching - $output .= 'wwwroot.'/user/pixgroup.php/'.$group->id.'/'.$file.'.jpg"'. ' style="width:'.$size.'px;height:'.$size.'px;" alt="'.s(get_string('group').' '.$group->name).'" title="'.s($group->name).'"/>'; } else { - $output .= 'wwwroot.'/user/pixgroup.php?file=/'.$group->id.'/'.$file.'.jpg"'. ' style="width:'.$size.'px;height:'.$size.'px;" alt="'.s(get_string('group').' '.$group->name).'" title="'.s($group->name).'"/>'; } } -- 2.39.5