X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8f8cbc4ae8c0b335a9f68c7749ad49a4a74e3e07..5b3b288fc2c4dace76f5c6c60199cf434e2646b9:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 9ce5409d6..96bf154a6 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -13,8 +13,6 @@ class DiaryEntryController < ApplicationController if params[:diary_entry] @diary_entry = DiaryEntry.new(params[:diary_entry]) @diary_entry.user = @user - @diary_entry.language = Language.find_by_code(params[:language]) - @diary_entry.language = Language.find_by_code("en") if @diary_entry.language.nil? if @diary_entry.save redirect_to :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name @@ -22,6 +20,7 @@ class DiaryEntryController < ApplicationController render :action => 'edit' end else + @diary_entry = DiaryEntry.new(:language => @user.language) render :action => 'edit' end end