mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
FEATURE: show last updated date for wiki topics
This commit is contained in:
parent
c54b5824d4
commit
17b851cf08
|
@ -195,7 +195,11 @@ class TopicView
|
|||
|
||||
def published_time
|
||||
return nil if desired_post.blank?
|
||||
desired_post.created_at.strftime('%FT%T%:z')
|
||||
if desired_post.wiki && desired_post.post_number == 1 && desired_post.revisions.size > 0
|
||||
desired_post.revisions.last.updated_at.strftime('%FT%T%:z')
|
||||
else
|
||||
desired_post.created_at.strftime('%FT%T%:z')
|
||||
end
|
||||
end
|
||||
|
||||
def image_url
|
||||
|
|
Loading…
Reference in New Issue
Block a user