mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
MDL-31636 Added strftimeformat to comment object being passed through to xxx_comment_display() for further time format changes.
This commit is contained in:
parent
6c847bbb9e
commit
6b969e14b5
@ -526,6 +526,7 @@ class comment {
|
||||
$c->content = $u->ccontent;
|
||||
$c->format = $u->cformat;
|
||||
$c->timecreated = $u->ctimecreated;
|
||||
$c->strftimeformat = get_string('strftimerecent', 'langconfig');
|
||||
$url = new moodle_url('/user/view.php', array('id'=>$u->id, 'course'=>$this->courseid));
|
||||
$c->profileurl = $url->out(false);
|
||||
$c->fullname = fullname($u);
|
||||
@ -793,7 +794,7 @@ class comment {
|
||||
$replacements[] = $cmt->avatar;
|
||||
$replacements[] = html_writer::link($cmt->profileurl, $cmt->fullname);
|
||||
$replacements[] = $cmt->content;
|
||||
$replacements[] = userdate($cmt->timecreated, get_string('strftimerecent', 'langconfig'));
|
||||
$replacements[] = userdate($cmt->timecreated, $cmt->strftimeformat);
|
||||
|
||||
// use html template to format a single comment.
|
||||
return str_replace($patterns, $replacements, $this->template);
|
||||
|
Loading…
x
Reference in New Issue
Block a user