I have a rails form with a datetime_select field. When I try to submit the form, I get the following exception:
ActiveRecord::MultiparameterAssignmentErrors
In my case the ActiveRecord am/pm plugin caused the error through an incorrect alias_method_chain resulting in an StackLevelTooDeep exception.
alias_method_chain
StackLevelTooDeep
The plugin was included by the unobtrusive_date_picker plugin.
The look into this before hacking away.