diff options
Diffstat (limited to 'app/controllers/referentials_controller.rb')
| -rw-r--r-- | app/controllers/referentials_controller.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/referentials_controller.rb b/app/controllers/referentials_controller.rb index f46cd188d..437444f29 100644 --- a/app/controllers/referentials_controller.rb +++ b/app/controllers/referentials_controller.rb @@ -8,7 +8,10 @@ class ReferentialsController < BreadcrumbController respond_to :js, :only => :show def new - @referential = Referential.new_from(Referential.find(params[:from])) if params[:from] + if params[:from] + source_referential = Referential.find(params[:from]) + @referential = Referential.new_from(source_referential, organisation: current_organisation) + end new! do @referential.data_format = current_organisation.data_format |
