Skip to content

Commit

Permalink
Merge branch 'MDL-45010-master' of git://github.com/FMCorz/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Apr 18, 2014
2 parents 3c9016e + 97b97b6 commit 3497702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/chat/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ function chat_print_recent_activity($course, $viewfullnames, $timestart) {
$strftimerecent = get_string('strftimerecent');

if ($past) {
echo $OUTPUT->heading(get_string("pastchats", 'chat').':');
echo $OUTPUT->heading(get_string("pastchats", 'chat').':', 3);

foreach ($past as $cm) {
$link = $CFG->wwwroot.'/mod/chat/view.php?id='.$cm->id;
Expand All @@ -301,7 +301,7 @@ function chat_print_recent_activity($course, $viewfullnames, $timestart) {
}

if ($current) {
echo $OUTPUT->heading(get_string("currentchats", 'chat').':');
echo $OUTPUT->heading(get_string("currentchats", 'chat').':', 3);

$oldest = floor((time()-$CFG->chat_old_ping)/10)*10; // better db caching

Expand Down

0 comments on commit 3497702

Please sign in to comment.