Skip to content
Snippets Groups Projects
Commit 9ee9d9a8 authored by jaapjansma's avatar jaapjansma
Browse files

update

parent f2adcde2
No related branches found
No related tags found
No related merge requests found
......@@ -516,9 +516,11 @@ class CRM_DataprocessorOutputExport_PDF implements ExportOutputInterface, Direct
fwrite($file, $content['content'] . "\r\n");
fclose($file);
$file = fopen($filename.".header_part.".$sectionHeader, 'a');
fwrite($file, $content['header'] . "\r\n");
fclose($file);
if (isset($content['header'])) {
$file = fopen($filename.".header_part.".$sectionHeader, 'a');
fwrite($file, $content['header'] . "\r\n");
fclose($file);
}
}
$smarty->popScope();
......
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