Needs review
Project:
Mediafield Display
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Nov 2008 at 12:44 UTC
Updated:
23 Feb 2009 at 16:31 UTC
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
| Comment | File | Size | Author |
|---|---|---|---|
| mediafield_displayNew.patch | 1.78 KB | vivianspencer |
Comments
Comment #1
jct commentedThis also worked for me -- thanks!