diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-30 07:45:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-30 07:45:31 +0000 |
commit | 2596653bed6578c228fa8570cedce7263a22e207 (patch) | |
tree | 34e01a3ad990b781e1618eb4f84f87dad1ade2b7 /app/views/wikis | |
parent | e930ee8e98acbe14438c9c314077a9f7ee198269 (diff) | |
download | redmine-2596653bed6578c228fa8570cedce7263a22e207.tar.gz redmine-2596653bed6578c228fa8570cedce7263a22e207.zip |
Adds a delete link on the wiki index (#26579).
git-svn-id: http://svn.redmine.org/redmine/trunk@16916 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wikis')
-rw-r--r-- | app/views/wikis/destroy.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/wikis/destroy.html.erb b/app/views/wikis/destroy.html.erb index 5afb676b2..d996da546 100644 --- a/app/views/wikis/destroy.html.erb +++ b/app/views/wikis/destroy.html.erb @@ -7,5 +7,6 @@ <%= form_tag({:controller => 'wikis', :action => 'destroy', :id => @project}) do %> <%= hidden_field_tag "confirm", 1 %> <%= submit_tag l(:button_delete) %> - <%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'wiki') %> + <%= link_to l(:button_cancel), :back %> <% end %> + |