Skip to content
Snippets Groups Projects
Commit 2eb424b4 authored by jaapjansma's avatar jaapjansma
Browse files

Fixed issue with CSV export file name.

parent 92c48f6d
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
* Fixed issues with Aggregated Contribution data source
* Added extra filtes to data sources, such as a filter for event on the participant data source.
* Fixed issue with CSV export file name.
# Version 1.117
......
......@@ -126,7 +126,7 @@ abstract class CRM_DataprocessorOutputExport_AbstractSpreadsheet extends CRM_Dat
$this->getFileFormatClass($configuration)->processConfiguration($submittedValues, $configuration);
if (isset($submittedValues['altfilename']) && ''!==$submittedValues['altfilename']) {
$configuration['altfilename'] = CRM_Utils_String::munge($this->removeFileExtensionFromFileName($submittedValues['altfilename']), $configuration) . '.' . $this->getExtension($configuration);
$configuration['altfilename'] = CRM_Utils_String::munge($this->removeFileExtensionFromFileName($submittedValues['altfilename'], $configuration)) . '.' . $this->getExtension($configuration);
}
return $configuration;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment