Skip to content

Commit

Permalink
Merge branch 'wip-MDL-30906-MOODLE_21_STABLE' of git://github.com/abg…
Browse files Browse the repository at this point in the history
…reeve/moodle into MOODLE_21_STABLE
  • Loading branch information
Sam Hemelryk committed Mar 12, 2012
2 parents c91704e + e931367 commit 06dd9ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions course/recent.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
$PAGE->set_title("$course->shortname: $strrecentactivity"); $PAGE->set_title("$course->shortname: $strrecentactivity");
$PAGE->set_heading($course->fullname); $PAGE->set_heading($course->fullname);
echo $OUTPUT->header(); echo $OUTPUT->header();
echo $OUTPUT->heading(format_string($course->fullname) . ": $userinfo", 3); echo $OUTPUT->heading(format_string($course->fullname) . ": $userinfo", 2);


$mform->display(); $mform->display();


Expand Down Expand Up @@ -238,8 +238,8 @@
$modfullname = $modnames[$cm->modname]; $modfullname = $modnames[$cm->modname];


$image = "<img src=\"" . $OUTPUT->pix_url('icon', $cm->modname) . "\" class=\"icon\" alt=\"$modfullname\" />"; $image = "<img src=\"" . $OUTPUT->pix_url('icon', $cm->modname) . "\" class=\"icon\" alt=\"$modfullname\" />";
echo "<h4>$image $modfullname". echo "<h3>$image $modfullname".
" <a href=\"$CFG->wwwroot/mod/$cm->modname/view.php?id=$cm->id\" $linkformat>$name</a></h4>"; " <a href=\"$CFG->wwwroot/mod/$cm->modname/view.php?id=$cm->id\" $linkformat>$name</a></h3>";
} }


} else { } else {
Expand Down Expand Up @@ -269,7 +269,7 @@


} else { } else {


echo '<h4><center>' . get_string('norecentactivity') . '</center></h2>'; echo '<h3><center>' . get_string('norecentactivity') . '</center></h3>';


} }


Expand Down

0 comments on commit 06dd9ad

Please sign in to comment.