Skip to content

Commit

Permalink
Fixes #175
Browse files Browse the repository at this point in the history
  • Loading branch information
ldesousa committed Oct 7, 2014
1 parent 2ef6cfa commit a68aeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/mod_configs_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def create
id = d[1]
if(identifier != "" && id != "-1") then
confds = ConfigDataset.new()
confds.input_identifier = identifier
confds.input_identifier = identifier.split(":")[0]
confds.mod_config = @mod_config
confds.dataset = Dataset.find(id)

Expand Down Expand Up @@ -372,7 +372,7 @@ def create
textval.identifier = key
textval.value = params['input'][key]
textval.is_input = true

success &= textval.save()
end
end
Expand Down

0 comments on commit a68aeee

Please sign in to comment.