diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb
index b5bfcd19e..c8ce847dc 100644
--- a/app/views/messages/edit.html.erb
+++ b/app/views/messages/edit.html.erb
@@ -1,14 +1,18 @@
-
<%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%=h @message.subject %>
+<%= link_to h(@board.name), :controller => 'boards',
+ :action => 'show', :project_id => @project,
+ :id => @board %> » <%= h @message.subject %>
<% form_for :message, @message,
:url => {:action => 'edit'},
:html => {:multipart => true,
:id => 'message-form',
:method => :post} do |f| %>
- <%= render :partial => 'form', :locals => {:f => f, :replying => !@message.parent.nil?} %>
+ <%= render :partial => 'form',
+ :locals => {:f => f, :replying => !@message.parent.nil?} %>
<%= submit_tag l(:button_save) %>
<%= link_to_remote l(:label_preview),
- { :url => { :controller => 'messages', :action => 'preview', :board_id => @board },
+ { :url => { :controller => 'messages',
+ :action => 'preview', :board_id => @board },
:method => 'post',
:update => 'preview',
:with => "Form.serialize('message-form')",