1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

Add links to the user name and date on wiki update info (#26575).

Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@17388 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2018-06-16 14:33:47 +00:00
parent c5ce92a678
commit ce6f05509c

View File

@ -66,6 +66,6 @@ module WikiHelper
end
def wiki_content_update_info(content)
l(:label_updated_time_by, :author => content.author.name, :age => distance_of_time_in_words(Time.now, content.updated_on)).html_safe
l(:label_updated_time_by, :author => link_to_user(content.author), :age => time_tag(content.updated_on)).html_safe
end
end