Skip to content

Commit

Permalink
Works with slasharguments off now
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Jan 17, 2005
1 parent abea5d6 commit e525e3d
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions userpix/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e525e3d

Please sign in to comment.