1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-10 02:08:33 +02:00

MDL-67281 forum: don't show discussion creation time twice

The discussion creation time (or first post) is being shown
both in the "started by" and "last post" columns in forum
discussions list.

Just let's change the former to show the discussion modification
time (or last post) instead.
This commit is contained in:
Eloy Lafuente (stronk7) 2019-11-15 19:11:34 +01:00
parent 52d3d6f540
commit 12f310e545

@ -276,7 +276,7 @@
<div class="line-height-3">
{{#latestpostid}}
<a href="{{{discussion.urls.viewlatest}}}" title="{{#userdate}}{{discussion.times.modified}},{{#str}}strftimerecentfull{{/str}}{{/userdate}}">
{{#userdate}}{{discussion.times.created}}, {{#str}}strftimedatemonthabbr, langconfig{{/str}}{{/userdate}}
{{#userdate}}{{discussion.times.modified}}, {{#str}}strftimedatemonthabbr, langconfig{{/str}}{{/userdate}}
</a>
{{/latestpostid}}
</div>