]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/reports_controller.rb
Reopen issues if necessary when creating a report.
[rails.git] / app / controllers / reports_controller.rb
index b5740d146bf9557e390465026d8615b79a425445..5d0442731733453d845790cc362ac8d9b2bfe15e 100644 (file)
@@ -17,7 +17,7 @@ class ReportsController < ApplicationController
 
     if @report.save
       @report.issue.save
-      # FIXME: reopen issue if necessary
+      @report.issue.reopen! unless @report.issue.open?
       redirect_to root_path, :notice => t("issues.create.successful_report")
     else
       redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t("issues.create.provide_details")