Problem with Ampersands “&” in Blog Title
-
Hi –
I have a blog title with an ampersand “&” in it. i.e. “S&P Cooking Lessons”
The resulting email title that gets sent out becomes garbled resulting in “S
&
P Cooking Lessons: Easy Sign Up”Your code is fairly well annotated, and I discovered that this error can be fixed, if in the file:
esu-form-process-class.php
if lines 112 & 113 are changed from:
$esu_replace_what = array(''', '"', '"'); $esu_replace_with = array("'",'"','"');
to:
$esu_replace_what = array(''', '"', '"', '&'); $esu_replace_with = array("'",'"','"','&');
then this resolves the problem.
You may want to consider this amendment in your next rollout.
Best regards,
Sean Riddolls
[email protected]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Problem with Ampersands “&” in Blog Title’ is closed to new replies.