The signup form used both at /mailchimp/subscribe and in the signup blocks incorrectly escapes quotations.
For example, a list called "foo'bar" would present the text "Sign up for foo'bar".

This happens because the text is escaped using check_plain(), which in turn calls htmlspecialchars($text, ENT_QUOTES, 'UTF-8').
Doing this here requires decoding the quotation marks again afterwards.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mvc’s picture

Status: Active » Needs review
FileSize
885 bytes
antipex’s picture

Status: Needs review » Fixed

Rolled into e5f843a.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

fixed entity escaping