# HG changeset patch # User bsw # Date 1632327810 -7200 # Node ID c91d97d1f5baf97657967e4f995d2e0c47ba370c # Parent 0313770d09adca8c7bc485fe755e460c437b8429 Store ids not names for multiselect fields diff -r 0313770d09ad -r c91d97d1f5ba app/main/registration/_action/register.lua --- a/app/main/registration/_action/register.lua Wed Sep 22 18:21:17 2021 +0200 +++ b/app/main/registration/_action/register.lua Wed Sep 22 18:23:30 2021 +0200 @@ -149,7 +149,7 @@ if option.other then table.insert(values, param.get("verification_data_" .. field.name .. "_other")) else - table.insert(values, option.name) + table.insert(values, option.id) end end end