From f0ba77f4c88e2ca21bfdf156a791854c5741124b Mon Sep 17 00:00:00 2001 From: Brian Shaughnessy Date: Tue, 14 Feb 2017 08:27:19 -0500 Subject: [PATCH] CRM-20015 fix constant case --- CRM/Utils/PDF/Document.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/PDF/Document.php b/CRM/Utils/PDF/Document.php index 0698b13944..e841d67ca0 100644 --- a/CRM/Utils/PDF/Document.php +++ b/CRM/Utils/PDF/Document.php @@ -115,7 +115,7 @@ class CRM_Utils_PDF_Document { $phpWord = \PhpOffice\PhpWord\IOFactory::load($fileName, $formats[$ext]); } - \PhpOffice\PhpWord\Settings::setOutputEscapingEnabled(true); //CRM-20015 + \PhpOffice\PhpWord\Settings::setOutputEscapingEnabled(TRUE); //CRM-20015 $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, $formats[$ext]); CRM_Utils_System::setHttpHeader('Content-Type', "application/$ext"); -- 2.25.1