From 464cb8fd961e414bbd362c3f08a3dcae058ef4a8 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 16 May 2013 18:47:42 -0400 Subject: [PATCH] CRM-12647 - Fix misnamed variable ---------------------------------------- * CRM-12647: Customization export/import crashes on "&" http://issues.civicrm.org/jira/browse/CRM-12647 --- CRM/Utils/Migrate/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Migrate/Export.php b/CRM/Utils/Migrate/Export.php index 44e817ed4d..248e2486e8 100644 --- a/CRM/Utils/Migrate/Export.php +++ b/CRM/Utils/Migrate/Export.php @@ -357,7 +357,7 @@ AND entity_id IS NULL } $keyValues['extends_entity_column_value_option_group'] = $key; $types = explode(CRM_Core_DAO::VALUE_SEPARATOR, substr($object->$name, 1, -1)); - $value = array(); + $values = array(); foreach ($types as $type) { $values[] = $this->_xml['optionValue']['map']["$key.{$type}"]; } -- 2.25.1