diff --git a/data/webkit/e-editor.js b/data/webkit/e-editor.js index 14b632804f..55c7bcaaa6 100644 --- a/data/webkit/e-editor.js +++ b/data/webkit/e-editor.js @@ -5080,7 +5080,7 @@ EvoEditor.removeUnwantedTags = function(parent) for (child = parent.firstChild; child; child = next) { next = child.nextSibling; - if (child.tagName == "STYLE" || + if (child.tagName == "TITLE" || child.tagName == "META") child.remove(); }