From 2e28a8b990b883fac8ef38161b3e2ab84d9f8d72 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Fri, 28 Aug 2015 00:34:02 +0000 Subject: [PATCH] Fix spelling on Default --- CRM/Export/BAO/Export.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Export/BAO/Export.php b/CRM/Export/BAO/Export.php index 0dccd570c1..7d67bc8c46 100644 --- a/CRM/Export/BAO/Export.php +++ b/CRM/Export/BAO/Export.php @@ -92,7 +92,7 @@ class CRM_Export_BAO_Export { * * return string $property */ - public static function defultReturnProperty($exportMode) { + public static function defaultReturnProperty($exportMode) { // hack to add default returnproperty based on export mode if ($exportMode == CRM_Export_Form_Select::CONTRIBUTE_EXPORT) { $property = 'contribution_id'; @@ -328,7 +328,7 @@ class CRM_Export_BAO_Export { } } } - $returnProperties[self::defultReturnProperty($exportMode)] = 1; + $returnProperties[self::defaultReturnProperty($exportMode)] = 1; if ($exportmode == CRM_Export_Form_Select::EVENT_EXPORT && !empty($returnProperties['participant_role'])) { unset($returnProperties['participant_role']); $returnProperties['participant_role_id'] = 1; -- 2.25.1