From: Ruben Rodriguez Date: Tue, 8 Jun 2021 21:15:02 +0000 (+0200) Subject: The old pdf test system doesn't work anymore, defaulting to production method X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=062653fae82e9802d9473bec96e0f2603384acaf;p=civicrm-core.git The old pdf test system doesn't work anymore, defaulting to production method --- diff --git a/CRM/Utils/PDF/Utils.php b/CRM/Utils/PDF/Utils.php index e134e6bd72..9353ea2ba3 100644 --- a/CRM/Utils/PDF/Utils.php +++ b/CRM/Utils/PDF/Utils.php @@ -122,9 +122,7 @@ right = 1.0in]{geometry} else { header('Content-Type: application/pdf'); header('Content-Disposition: attachment; filename="' . $fileName . '"'); - echo $pdf; - // quidam: comment previous line and uncomment next one during printing - //CRM_Utils_PDF_Utils::enqueuePDF($pdf); + CRM_Utils_PDF_Utils::enqueuePDF($pdf); } } @@ -338,9 +336,7 @@ right = 1.0in]{geometry} else { CRM_Utils_System::setHttpHeader('Content-Type', 'application/pdf'); CRM_Utils_System::setHttpHeader('Content-Disposition', 'attachment; filename="' . $fileName . '"'); - echo $pdf; - // quidam: comment previous line and uncomment next one during printing - //CRM_Utils_PDF_Utils::enqueuePDF($pdf); + CRM_Utils_PDF_Utils::enqueuePDF($pdf); } }