~singpolyma/sgx-jmp

e6fa970665663b91f642b69cc9a64933dac502e5 — Stephen Paul Weber 1 year, 2 months ago 880e5e8
Strip fwd value from form before saving
1 files changed, 1 insertions(+), 1 deletions(-)

M lib/configure_calls_form.rb
M lib/configure_calls_form.rb => lib/configure_calls_form.rb +1 -1
@@ 34,7 34,7 @@ protected

	def parse_fwd(fwd_from_form)
		fwd_from_form.reduce(@customer.fwd) do |fwd, (var, val)|
			fwd.with(var.to_sym => val)
			fwd.with(var.to_sym => val.strip)
		end
	end
end