diff options
Diffstat (limited to 'app/views/messages')
-rw-r--r-- | app/views/messages/edit.html.erb | 2 | ||||
-rw-r--r-- | app/views/messages/show.html.erb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb index 063676197..559afc6bc 100644 --- a/app/views/messages/edit.html.erb +++ b/app/views/messages/edit.html.erb @@ -1,6 +1,6 @@ <%= board_breadcrumb(@message) %> -<h2><%= avatar(@topic.author, :size => "24") %><%= @topic.subject %></h2> +<h2><%= avatar(@topic.author) %><%= @topic.subject %></h2> <%= form_for @message, { :as => :message, diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 5756a9267..893659d6f 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -22,7 +22,7 @@ ) if @message.destroyable_by?(User.current) %> </div> -<h2><%= avatar(@topic.author, :size => "24") %><%= @topic.subject %></h2> +<h2><%= avatar(@topic.author) %><%= @topic.subject %></h2> <div class="message"> <p><span class="author"><%= authoring @topic.created_on, @topic.author %></span></p> @@ -66,7 +66,7 @@ ) if message.destroyable_by?(User.current) %> </div> <h4> - <%= avatar(message.author, :size => "24") %> + <%= avatar(message.author) %> <%= link_to message.subject, { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %> - <%= authoring message.created_on, message.author %> |