Works with slasharguments off now

This commit is contained in:
moodler
2005-01-17 15:21:00 +00:00
parent abea5d6940
commit e525e3d32f
+11 -5
View File
@@ -25,11 +25,17 @@
print_header($title, $title, $title);
foreach ($users as $user) {
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&amp;course=1\"".
"title=\"".fullname($user)."\">";
echo "<img border=0 src=\"$CFG->wwwroot/user/pix.php/$user->id/f1.jpg\" ".
"width=100 height=100 alt=\"".fullname($user)."\" />";
echo "</a> \n";
$fullname = fullname($user);
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&amp;course=1\"".
"title=\"$fullname\">";
if ($CFG->slasharguments) { // Use this method if possible for better caching
echo '<img src="'. $CFG->wwwroot .'/user/pix.php/'.$user->id.'/f1.jpg"'.
' border="0" width="100" height="100" alt="'.$fullname.'" />';
} else {
echo '<img src="'. $CFG->wwwroot .'/user/pix.php?file=/'. $user->id .'/f1.jpg"'.
' border="0" width="100" height="100" alt="'.$fullname.'" />';
}
echo "</a> \n";
}
print_footer();