It appears that when passing a URL with more than two key-value pairs in the querystring that data-file parameter is only allowing two to get through.
Here's my call to the swf object:
swfobject.embedSWF(
"/report/ofc/open-flash-chart.swf", "all_conversions_report", "950", "150",
"9.0.0", "expressInstall.swf",
{"data-file":"/report/all_conversions.php?enddate=<?php echo $strEndDate;?>&startdate=<?php echo $strStartDate;?>&clientid=<?php echo $clientID;?>"}
);
It appears to only allow two key/value pairs on the URL. Whatever value I put in for the 3rd value seems to get dumped.
I can call the all_conversions.php data file directly without issue, passing the same parameters in the query string and getting back the same JSON string as I do when I hard code the values.
Any key/value pair put in the 3rd position is lost.
