Skip to content
Snippets Groups Projects
Commit fdbcc8ea authored by Liam Morland's avatar Liam Morland Committed by Bernd Oliver Sünderhauf
Browse files

Issue #2789713: create_xfdf() should not require $file parameter.

parent 55312595
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,9 @@ ...@@ -8,8 +8,9 @@
/** /**
* Generates an XFDF file from values given in an associative array. * Generates an XFDF file from values given in an associative array.
* *
* @param string $file * @param string|null $file
* The PDF file: URL or file path accepted. * The PDF file: URL or file path accepted. Use NULL to skip setting
* file-related properties.
* @param array $info * @param array $info
* Key/value pairs of the field data. * Key/value pairs of the field data.
* @param string $enc * @param string $enc
...@@ -35,11 +36,15 @@ function create_xfdf($file, $info, $enc = 'UTF-8') { ...@@ -35,11 +36,15 @@ function create_xfdf($file, $info, $enc = 'UTF-8') {
} }
$ids_ele = $xfdf_ele->appendChild($doc->createElement('ids')); $ids_ele = $xfdf_ele->appendChild($doc->createElement('ids'));
$ids_ele->setAttribute('original', md5($file)); if ($file) {
$ids_ele->setAttribute('original', md5($file));
}
$ids_ele->setAttribute('modified', REQUEST_TIME); $ids_ele->setAttribute('modified', REQUEST_TIME);
$f_ele = $xfdf_ele->appendChild($doc->createElement('f')); if ($file) {
$f_ele->setAttribute('href', $file); $f_ele = $xfdf_ele->appendChild($doc->createElement('f'));
$f_ele->setAttribute('href', $file);
}
return $doc->saveXML(); return $doc->saveXML();
} }
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