Importexport: Fix missing select conversion to user friendly value

If select still had key=>value options, they were not converted before export.  Fixes missing values in merge.
This commit is contained in:
nathan 2023-07-18 11:51:54 -06:00
parent 48063b9059
commit 4f2bef18bc

View File

@ -362,7 +362,7 @@ class importexport_export_csv implements importexport_iface_export_record
}
else
{
if($key == $name && !is_array($select_option))
if($key == $_name && !is_array($select_option))
{
$option = $select_option;
break;