diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-10-26 07:15:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-10-26 07:15:08 +0000 |
commit | 3578cf4d9a53e9fcb77ac40f70ed2cc535794777 (patch) | |
tree | ebd5dc16bf02b1e2b93f8eef25a94eed4db40f5f /app | |
parent | ec5dbdb0bde1624275d38090104395953bdcb5fd (diff) | |
download | redmine-3578cf4d9a53e9fcb77ac40f70ed2cc535794777.tar.gz redmine-3578cf4d9a53e9fcb77ac40f70ed2cc535794777.zip |
Replaced acronym with abbr tags (#15191).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12235 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 2c093a26f..e5b75c4cf 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -384,7 +384,7 @@ module ApplicationHelper if @project link_to(text, {:controller => 'activities', :action => 'index', :id => @project, :from => User.current.time_to_date(time)}, :title => format_time(time)) else - content_tag('acronym', text, :title => format_time(time)) + content_tag('abbr', text, :title => format_time(time)) end end |