You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks again for sharing your Library.
I'm embedding images on a Word (docx) document and I'm actually facing a strange issue. There are somes XML attributes that are html encoded and some not.
On a file with 23 embed attributes, 2 are wrong like this one
<a:blipr:embed="rId12" cstate="print">
Other are corrects like the Following :
<a:blipr:embed="rId12"cstate="print">
When I checked function that generate this line, the quote symbol is correct
It appears that we had a "&" in some textual content that was not escaped. And & is a reserved character in XML. As soon as we escaped it on content, the problem on the attribute disappears.
Hello,
Thanks again for sharing your Library.
I'm embedding images on a Word (docx) document and I'm actually facing a strange issue. There are somes XML attributes that are html encoded and some not.
On a file with 23 embed attributes, 2 are wrong like this one
Other are corrects like the Following :
When I checked function that generate this line, the quote symbol is correct
Did I do something wrong?
Version used: 3.10.1
PHP: 5.5.9 & 7.2.7
The text was updated successfully, but these errors were encountered: