diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-05 22:57:20 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-05 22:57:20 +0000 |
commit | db110304105a7758ee2d3be496c91d037f16425f (patch) | |
tree | d63e0910e76753cdf9ac72a93868787edab78307 /app/views | |
parent | cbe266079e9105c61bbda84c5cef89927548fcfe (diff) | |
download | redmine-db110304105a7758ee2d3be496c91d037f16425f.tar.gz redmine-db110304105a7758ee2d3be496c91d037f16425f.zip |
Refactor: move method to model. (references r4057)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4062 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_history.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml index 4ea2dd2ac..4851e5f22 100644 --- a/app/views/issues/_history.rhtml +++ b/app/views/issues/_history.rhtml @@ -1,6 +1,6 @@ <% reply_links = authorize_for('issues', 'edit') -%> <% for journal in journals %> - <div id="change-<%= journal.id %>" class="<%= css_journal_classes(journal) %>"> + <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>"> <h4><div class="journal-link"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div> <%= avatar(journal.user, :size => "24") %> <%= content_tag('a', '', :name => "note-#{journal.indice}")%> |