Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fillpdf
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
fillpdf
Commits
8da26cad
Commit
8da26cad
authored
2 years ago
by
Liam Morland
Browse files
Options
Downloads
Patches
Plain Diff
Issue #3273143: Handle empty values in create_xfdf()
parent
21e4098b
No related branches found
Branches containing commit
Tags
7.x-1.18-rc2
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xfdf.inc
+1
-1
1 addition, 1 deletion
xfdf.inc
with
1 addition
and
1 deletion
xfdf.inc
+
1
−
1
View file @
8da26cad
...
...
@@ -33,7 +33,7 @@ function create_xfdf($file, array $info, $enc = 'UTF-8') {
$field_ele
->
setAttribute
(
'name'
,
$name
);
$value_ele
=
$field_ele
->
appendChild
(
$doc
->
createElement
(
'value'
));
$value_ele
->
appendChild
(
$doc
->
createTextNode
(
$value
));
$value_ele
->
appendChild
(
$doc
->
createTextNode
(
$value
?:
''
));
}
$ids_ele
=
$xfdf_ele
->
appendChild
(
$doc
->
createElement
(
'ids'
));
...
...
This diff is collapsed.
Click to expand it.
Liam Morland
@lkmorlan
mentioned in commit
3d36f909
·
1 year ago
mentioned in commit
3d36f909
mentioned in commit 3d36f909f14950937e2849bc0baa769b30604a4a
Toggle commit list
Lily Yan
@lily.yan
mentioned in commit
6b844d9f
·
1 year ago
mentioned in commit
6b844d9f
mentioned in commit 6b844d9feb570ffb29fd0986626d623988914b79
Toggle commit list
Liam Morland
@lkmorlan
mentioned in commit
11ba7e4a
·
1 year ago
mentioned in commit
11ba7e4a
mentioned in commit 11ba7e4a4e6ccf2a497486fe90739e19875af6e9
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment