diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb
index 4695f1bb0e..d5744f5571 100644
--- a/app/views/wiki/show.html.erb
+++ b/app/views/wiki/show.html.erb
@@ -32,7 +32,7 @@ See doc/COPYRIGHT.rdoc for more details.
<% if @editable %>
<% if User.current.allowed_to? :edit_wiki_pages, @project %>
<% if @page %>
- <%= content_tag(:li, link_to(l(:create_new_page), wiki_new_child_path(id: @page, project_id: @project), class: 'button icon-add -alt-highlight'), class: 'toolbar-item') %>
+ <%= content_tag(:li, link_to(l(:create_new_page), {controller: '/wiki', action: 'new_child', project_id: @project.identifier, id: @page}, class: 'button icon-add -alt-highlight'), class: 'toolbar-item') %>
<% end %>
<% end %>
<%= li_unless_nil(link_to_if_authorized(l(:button_edit), {action: 'edit', id: @page}, class: 'button icon-edit', accesskey: accesskey(:edit)), class: 'toolbar-item') if @content.version == @page.content.version %>