Client\MicrosoftAjax.Extended\HtmlEditorExtender\HtmlEditorExtenderBehavior.Pre.js
line:722 change to
if (tag.toLowerCase().substring(0, 2) != '<a' && tag.toLowerCase().substring(0, 4) != '<img') {
sQA = /\=\'([^\'])*\'/g; //single quoted attributes
nQA = /\=([^\"][^\s\/\>]*)/g; //non double quoted attributes
return tag.replace(sQA, '="$1"').replace(nQA, '="$1"');
}
excample:
<img src="http://u.xxx.com/thumbnailimage.html?uid=xxx&dir=Blogs&file=xxx.png">
line:722 change to
if (tag.toLowerCase().substring(0, 2) != '<a' && tag.toLowerCase().substring(0, 4) != '<img') {
sQA = /\=\'([^\'])*\'/g; //single quoted attributes
nQA = /\=([^\"][^\s\/\>]*)/g; //non double quoted attributes
return tag.replace(sQA, '="$1"').replace(nQA, '="$1"');
}
excample:
<img src="http://u.xxx.com/thumbnailimage.html?uid=xxx&dir=Blogs&file=xxx.png">