the following characters: &, ", ', <, >. come through looking as follows, respectively:
& " ' < > on the labels. Does anyone know where this transformation happening?
the following characters: &, ", ', <, >. come through looking as follows, respectively:
& " ' < > on the labels. Does anyone know where this transformation happening?
Comments
Comment #1
darrellduane commentedHere is how this bug report should look. I forgot to include the 'code' tags:
Comment #2
letapjar commentedI suspect the culprit would be in the mailing_label_plugin_display_attachment.
line 36:
its the check_plain part that calls htmlspecialchars() which does the conversion you are talking about
see this API entry
this is a good safety measure and should probably be left in place. You could try a form_alter to catch the result set and re-set the htmlentities back to their characters after the plugindisplay attachment has done its thing. perhaps and #after_build call to a reformatting fucntion?
Comment #3
letapjar commentedchanging the status to by design - I keep forgetting to set status when I post - sorry for the multiple entires :)
Comment #4
richardtmorgan commentedIssue resolved here: http://drupal.org/node/604434