diff --git a/app/views/dmsf_upload/_multi_upload.html.erb b/app/views/dmsf_upload/_multi_upload.html.erb
index a2ccc21a..1ea277b2 100644
--- a/app/views/dmsf_upload/_multi_upload.html.erb
+++ b/app/views/dmsf_upload/_multi_upload.html.erb
@@ -24,46 +24,36 @@
<%= form_tag({:controller => 'dmsf_upload', :action => 'upload_files', :id => @project, :folder_id => @folder},
- :id => 'uploadform', :method=>:post, :multipart => true) do %>
- <% if Setting.attachment_max_size.to_i >= 102400 %>
-
- <%= l(:label_file_size) %>:
-
-
- <% end %>
-
<%= l(:heading_file_upload) %>
-
-
- <% max_file_upload = Setting.plugin_redmine_dmsf['dmsf_max_file_upload'].to_i %>
- <%= l(:note_uploaded_maximum_files_at_once, :number => max_file_upload) if max_file_upload > 0 %>
- <%= l(:note_upload_files_greater_than_two_gb) if Setting.attachment_max_size.to_i >= 2097151 %>
-
-
+ :id => 'uploadform', :method => :post, :multipart => true) do %>
+
+
+
+
<%= l(:label_upload) %>
-
+
<%= render :partial => 'attachments/form' %>
- <%= submit_tag(l(:submit_upload_files)) %>
+ <%= submit_tag l(:label_upload) %>
<% end %>