From e92617a03cd08293261c5fad6068c3de70142634 Mon Sep 17 00:00:00 2001 From: pancho <pancho@15425.no-reply.drupal.org> Date: Sun, 16 Feb 2020 16:51:11 +0100 Subject: [PATCH] Issue #3056313 by Pancho, wizonesolutions: Remove XFA forms only when flattening --- src/Plugin/PdfBackend/PdftkPdfBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/PdfBackend/PdftkPdfBackend.php b/src/Plugin/PdfBackend/PdftkPdfBackend.php index 271d300..c46d612 100644 --- a/src/Plugin/PdfBackend/PdftkPdfBackend.php +++ b/src/Plugin/PdfBackend/PdftkPdfBackend.php @@ -247,7 +247,7 @@ class PdftkPdfBackend extends PdfBackendBase implements ContainerFactoryPluginIn // Now feed this to pdftk and save the result to a variable. $pdftk_path = $this->getPdftkPath(); ob_start(); - $command = "{$pdftk_path} {$template_path} fill_form {$xfdf_path} output - " . ($context['flatten'] ? 'flatten ' : '') . "drop_xfa{$arg_pdftk_encryption}{$arg_permissions}{$arg_owner_password}{$arg_user_password}"; + $command = "{$pdftk_path} {$template_path} fill_form {$xfdf_path} output - " . ($context['flatten'] ? 'flatten drop_xfa' : '') . "{$arg_pdftk_encryption}{$arg_permissions}{$arg_owner_password}{$arg_user_password}"; passthru($command); $data = ob_get_clean(); if ($data === FALSE) { -- GitLab