summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-02-23 13:10:51 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-02-23 13:10:51 +0000
commit8f24aa6c676b90f125adc9bf75ecc1cbdaf7a379 (patch)
tree39c10a974c438ca9b5cc52bdd0c4de544fc5fadc /app
parent3871cbc75c4ed8ad8501d77e09a740cfb0f7c7f8 (diff)
downloadredmine-8f24aa6c676b90f125adc9bf75ecc1cbdaf7a379.tar.gz
redmine-8f24aa6c676b90f125adc9bf75ecc1cbdaf7a379.zip
Preserve uploaded files when on documents.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8944 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/controllers/documents_controller.rb4
-rw-r--r--app/views/documents/_form.html.erb2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/documents_controller.rb b/app/controllers/documents_controller.rb
index 3f6c9497e..262088ed2 100644
--- a/app/controllers/documents_controller.rb
+++ b/app/controllers/documents_controller.rb
@@ -52,8 +52,8 @@ class DocumentsController < ApplicationController
def create
@document = @project.documents.build(params[:document])
- if request.post? and @document.save
- attachments = Attachment.attach_files(@document, params[:attachments])
+ @document.save_attachments(params[:attachments])
+ if @document.save
render_attachment_warning_if_needed(@document)
flash[:notice] = l(:notice_successful_create)
redirect_to :action => 'index', :project_id => @project
diff --git a/app/views/documents/_form.html.erb b/app/views/documents/_form.html.erb
index 600bf66eb..b5b5fa410 100644
--- a/app/views/documents/_form.html.erb
+++ b/app/views/documents/_form.html.erb
@@ -10,6 +10,6 @@
<% if @document.new_record? %>
<div class="box tabular">
-<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
+<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form', :locals => {:container => @document} %></p>
</div>
<% end %>