diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-29 11:28:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-29 11:28:22 +0000 |
commit | f8de723c468faa5c53c6511bd6990f739a9fe398 (patch) | |
tree | 2acb965cbddd78a945e58f9c0a9267164ad187ab | |
parent | a0b2ab338e0b61dd4d73f858c1bd16394ca518a5 (diff) | |
download | redmine-f8de723c468faa5c53c6511bd6990f739a9fe398.tar.gz redmine-f8de723c468faa5c53c6511bd6990f739a9fe398.zip |
Removed inline styles.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10118 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/boards/show.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/boards/show.html.erb b/app/views/boards/show.html.erb index b4d4bd71d..1effcb3f9 100644 --- a/app/views/boards/show.html.erb +++ b/app/views/boards/show.html.erb @@ -37,9 +37,9 @@ <% @topics.each do |topic| %> <tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>"> <td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td> - <td class="author" align="center"><%= link_to_user(topic.author) %></td> - <td class="created_on" align="center"><%= format_time(topic.created_on) %></td> - <td class="replies" align="center"><%= topic.replies_count %></td> + <td class="author"><%= link_to_user(topic.author) %></td> + <td class="created_on"><%= format_time(topic.created_on) %></td> + <td class="reply-count"><%= topic.replies_count %></td> <td class="last_message"> <% if topic.last_reply %> <%= authoring topic.last_reply.created_on, topic.last_reply.author %><br /> |