Skip to content

Commit

Permalink
Now activity names support filterall in user activity reports.
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Apr 14, 2005
1 parent 0fc31f6 commit 46043af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/user.php
Expand Up @@ -141,7 +141,7 @@
"height=\"16\" width=\"16\" alt=\"$mod->modfullname\" />";
echo "<h4>$image $mod->modfullname: ".
"<a href=\"$CFG->wwwroot/mod/$mod->modname/view.php?id=$mod->id\">".
"$instance->name</a></h4>";
format_string($instance->name,true)."</a></h4>";
echo "<ul>";
$user_complete($course, $user, $mod, $instance);
echo "</ul>";
Expand Down Expand Up @@ -175,7 +175,7 @@ function print_outline_row($mod, $instance, $result) {
echo "<td valign=\"top\">$image</td>";
echo "<td valign=\"top\" width=\"300\">";
echo " <a title=\"$mod->modfullname\"";
echo " href=\"../mod/$mod->modname/view.php?id=$mod->id\">$instance->name</a></td>";
echo " href=\"../mod/$mod->modname/view.php?id=$mod->id\">".format_string($instance->name,true)."</a></td>";
echo "<td>&nbsp;&nbsp;&nbsp;</td>";
echo "<td valign=\"top\" bgcolor=\"white\">";
if (isset($result->info)) {
Expand Down

0 comments on commit 46043af

Please sign in to comment.