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

Issue #3276500: pdftk binary check fails

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