Browse Source

remove spaces inside {} of app/controllers/journals_controller.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20366 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 3 years ago
parent
commit
ef4fedfa4f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app/controllers/journals_controller.rb

+ 2
- 2
app/controllers/journals_controller.rb View File

@@ -92,9 +92,9 @@ class JournalsController < ApplicationController
@journal.safe_attributes = params[:journal]
@journal.save
@journal.destroy if @journal.details.empty? && @journal.notes.blank?
call_hook(:controller_journals_edit_post, { :journal => @journal, :params => params})
call_hook(:controller_journals_edit_post, {:journal => @journal, :params => params})
respond_to do |format|
format.html { redirect_to issue_path(@journal.journalized) }
format.html {redirect_to issue_path(@journal.journalized)}
format.js
end
end

Loading…
Cancel
Save