Changing a.nodeValue to root[a.nodeName] creates

another bug that is much severe than absolute
links been converted to relative.

So I'm changing it back...
This commit is contained in:
julmis
2005-04-19 13:53:54 +00:00
parent 023d858d46
commit 57d5df5f2b
+1 -4
View File
@@ -2278,10 +2278,7 @@ HTMLArea.getHTML = function(root, outputRoot, editor) {
if (typeof root[a.nodeName] != "undefined" && name != "href" && name != "src") {
value = root[a.nodeName];
} else {
//value = a.nodeValue;
// This seems to be working, but if it does cause
// problems later on return the old value...
value = root[a.nodeName];
value = a.nodeValue;
if (HTMLArea.is_ie && (name == "href" || name == "src")) {
value = editor.stripBaseURL(value);
}