플래시출력시 allowScriptAccess의 값을 always에서 sameDomain으로 수정하여 보안 문제 방지

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2362 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-20 04:44:41 +00:00
parent 6899159706
commit 1c9f7dfb02

View file

@ -150,7 +150,7 @@ function displayMultimedia(src, width, height, auto_start) {
html = ""+
"<object classid=\""+clsid+"\" codebase=\""+codebase+"\" width=\""+width+"\" height=\""+height+"\" >"+
"<param name=\"wmode\" value=\"transparent\" />"+
"<param name=\"allowScriptAccess\" value=\"always\" />"+
"<param name=\"allowScriptAccess\" value=\"sameDomain\" />"+
"<param name=\"movie\" value=\""+src+"\" />"+
"<param name=\"quality\" value=\"high\" />"+
"<embed src=\""+src+"\" autostart=\""+auto_start+"\" width=\""+width+"\" height=\""+height+"\"></embed>"+