diff --git a/comment/lib.php b/comment/lib.php index 16fa9b6d38f..9034c84c500 100644 --- a/comment/lib.php +++ b/comment/lib.php @@ -577,7 +577,7 @@ class comment { $c->content = $u->ccontent; $c->format = $u->cformat; $c->timecreated = $u->ctimecreated; - $c->strftimeformat = get_string('strftimerecent', 'langconfig'); + $c->strftimeformat = get_string('strftimerecentfull', 'langconfig'); $url = new moodle_url('/user/view.php', array('id'=>$u->id, 'course'=>$this->courseid)); $c->profileurl = $url->out(false); // URL should not be escaped just yet. $c->fullname = fullname($u); @@ -712,7 +712,7 @@ class comment { $cmt_id = $DB->insert_record('comments', $newcmt); if (!empty($cmt_id)) { $newcmt->id = $cmt_id; - $newcmt->strftimeformat = get_string('strftimerecent', 'langconfig'); + $newcmt->strftimeformat = get_string('strftimerecentfull', 'langconfig'); $newcmt->fullname = fullname($USER); $url = new moodle_url('/user/view.php', array('id' => $USER->id, 'course' => $this->courseid)); $newcmt->profileurl = $url->out();