From: Seamus Lee Date: Fri, 28 Aug 2015 00:34:02 +0000 (+0000) Subject: Fix spelling on Default X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2e28a8b990b883fac8ef38161b3e2ab84d9f8d72;p=civicrm-core.git Fix spelling on Default --- 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;