Skip to content
Snippets Groups Projects
Commit e92617a0 authored by pancho's avatar pancho Committed by Kevin Kaland
Browse files

Issue #3056313 by Pancho, wizonesolutions: Remove XFA forms only when flattening

parent d3f7b6cc
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
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