summaryrefslogtreecommitdiffstats
path: root/app/controllers/wikis_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/wikis_controller.rb')
-rw-r--r--app/controllers/wikis_controller.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/wikis_controller.rb b/app/controllers/wikis_controller.rb
index 4469e3627..5b753b13b 100644
--- a/app/controllers/wikis_controller.rb
+++ b/app/controllers/wikis_controller.rb
@@ -24,7 +24,9 @@ class WikisController < ApplicationController
# Delete a project's wiki
def destroy
if request.post? && params[:confirm] && @project.wiki
- @project.wiki.destroy
+ if @project.wiki.destroy
+ Wiki.create_default(@project) unless @wiki
+ end
redirect_to project_path(@project)
end
end