There was a fix applied to format encoded urls correctly but the fix doesn't work under https:

$flashvars = str_replace('http%3A/%252F', 'http://', $flashvars);

changed to:

if (stristr($flashvars, 'http%3A')) {
  $flashvars = str_replace('http%3A/%252F', 'http://', $flashvars);
} elseif (stristr($flashvars, 'https%3A')) {
  $flashvars = str_replace('https%3A/%252F', 'https://', $flashvars);
}

I tested it and it works for the button and 1 Pixel Out players

CommentFileSizeAuthor
mediafield_displayNew.patch1.78 KBvivianspencer

Comments

jct’s picture

This also worked for me -- thanks!