Skip to content

Commit

Permalink
Fixed icon display for submissions when shown in course/recent.php
Browse files Browse the repository at this point in the history
  • Loading branch information
selliott committed Feb 16, 2004
1 parent d1156ef commit 4897d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/assignment/lib.php
Expand Up @@ -638,7 +638,7 @@ function assignment_print_recent_mod_activity($activity, $course, $detail=false)


$file = assignment_get_user_file($assignment, $user); $file = assignment_get_user_file($assignment, $user);


echo "<IMG SRC=\"$CFG->wwwroot/files/pix/$file->icon\" HEIGHT=16 WIDTH=16 BORDER=0 ALT=\"File\">"; echo "<img src=\"$CFG->pixpath/f/$file->icon\" height=16 width=16 border=0 alt=\"file\">";
echo "&nbsp;<A TARGET=\"uploadedfile\" HREF=\"$CFG->wwwroot/$file->url\">$file->name</A>"; echo "&nbsp;<A TARGET=\"uploadedfile\" HREF=\"$CFG->wwwroot/$file->url\">$file->name</A>";
echo "<BR>"; echo "<BR>";
} }
Expand Down

0 comments on commit 4897d92

Please sign in to comment.