diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-05 23:51:03 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-05 23:51:03 +0000 |
commit | d360ca4e145d2f16dd8bb61edf6973d32bb32226 (patch) | |
tree | 4dc1c5d9a3bac976304331460a9bbeb6792b6511 /app/views/wiki | |
parent | 297d4f8bab5d13371debbee1c3b0b8cdbf130fcc (diff) | |
download | redmine-d360ca4e145d2f16dd8bb61edf6973d32bb32226.tar.gz redmine-d360ca4e145d2f16dd8bb61edf6973d32bb32226.zip |
code layout cleanup app/views/wiki/edit.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8793 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/edit.html.erb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb index aa9385ff5..281657990 100644 --- a/app/views/wiki/edit.html.erb +++ b/app/views/wiki/edit.html.erb @@ -1,8 +1,10 @@ <%= wiki_page_breadcrumb(@page) %> -<h2><%=h @page.pretty_title %></h2> +<h2><%= h @page.pretty_title %></h2> -<% form_for :content, @content, :url => {:action => 'update', :id => @page.title}, :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> +<% form_for :content, @content, + :url => {:action => 'update', :id => @page.title}, + :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> <%= f.hidden_field :version %> <% if @section %> <%= hidden_field_tag 'section', @section %> |