Skip to content
Snippets Groups Projects
Commit 3c29f781 authored by Liam Morland's avatar Liam Morland Committed by Liam Morland
Browse files

Issue #3276500: pdftk binary check fails

parent 0ad0c3a6
No related branches found
No related tags found
No related merge requests found
...@@ -2074,7 +2074,7 @@ function fillpdf_pdftk_check($pdftk_path = 'pdftk') { ...@@ -2074,7 +2074,7 @@ function fillpdf_pdftk_check($pdftk_path = 'pdftk') {
return FALSE; return FALSE;
} }
// Check if version output includes "pdftk". // Check if version output includes "pdftk".
elseif (!strpos($output, 'pdftk')) { elseif (strpos($output, 'pdftk') === FALSE) {
return FALSE; return FALSE;
} }
return TRUE; return TRUE;
......
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