diff --git a/app/views/projects/settings/_wiki.html.erb b/app/views/projects/settings/_wiki.html.erb deleted file mode 100644 index 8374abb3d..000000000 --- a/app/views/projects/settings/_wiki.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -<%= labelled_form_for @wiki, - :as => :wiki, - :url => { :controller => 'wikis', :action => 'edit', :id => @project }, - :remote => true, :method => 'post' do |f| %> - -<%= error_messages_for 'wiki' %> - -
-

<%= f.text_field :start_page, :size => 60, :required => true %> -<%= l(:text_unallowed_characters) %>: , . / ? ; : |

-
- -
-<%= link_to(l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project}, - :class => 'icon icon-del') if @wiki && !@wiki.new_record? %> -
- -<%= submit_tag((@wiki.nil? || @wiki.new_record?) ? l(:button_create) : l(:button_save)) %> -<% end %>