﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7864	Flash plugin url escapes some values	Matti Järvinen		"Flash plugin url escapes some values.

Testing against http://nightly.ckeditor.com/6928/_samples/replacebyclass.html

To reproduce:
1. Insert new flash element through dialog
2. Set value to [url|ALL|9839]
3. Close dialog
4. View source to verify bug. embed tags src attribute gets url escaped

Expected (new lines added for readability):

{{{
<object classid=""clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"" codebase=""http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"" data=""[url|ALL|9839]"">
<param name=""quality"" value=""high"" />
<param name=""movie"" value=""[url|ALL|9839]"" />
<embed pluginspage=""http://www.macromedia.com/go/getflashplayer"" quality=""high"" src=""[url|ALL|9839]"" type=""application/x-shockwave-flash""></embed>
</object>
}}}

Got (new lines added for readability):
{{{
<object classid=""clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"" codebase=""http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"" data=""[url|ALL|9839]"">
<param name=""quality"" value=""high"" />
<param name=""movie"" value=""[url|ALL|9839]"" />
<embed pluginspage=""http://www.macromedia.com/go/getflashplayer"" quality=""high"" src=""[url%7CALL%7C9839]"" type=""application/x-shockwave-flash""></embed>
</object>
}}}

From what I could see this might be some difference in embedNode.setAttribute and CKEDITOR.dom.element.createFromHtml -> setAttributes"	Bug	confirmed	Normal		Core : Output Data	3.0		Firefox	Matti Järvinen
