From: <fa...@vh...> - 2005-09-21 08:47:35
|
Author: fabrice Date: 2005-09-21 10:38:09 +0200 (Wed, 21 Sep 2005) New Revision: 884 Modified: trunk/ccm-core/web/assets/htmlarea/htmlarea.js Log: Fixing encoding mix-up Modified: trunk/ccm-core/web/assets/htmlarea/htmlarea.js =================================================================== --- trunk/ccm-core/web/assets/htmlarea/htmlarea.js 2005-09-20 15:54:06 UTC (rev 883) +++ trunk/ccm-core/web/assets/htmlarea/htmlarea.js 2005-09-21 08:38:09 UTC (rev 884) @@ -2317,7 +2317,7 @@ return el && el.nodeType == 1 && (HTMLArea._blockTags.indexOf(" " + el.tagName.toLowerCase() + " ") != -1); }; -HTMLArea._closingTags="headscriptstyledivspantrtdtbodytableemstrongbicodecitedfnabbracronymfontatitleformtextareah1h2h3h4h5h6"; +HTMLArea._closingTags = " head script style div span tr td tbody table em strong b i code cite dfn abbr acronym font a title form textarea h1 h2 h3 h4 h5 h6 "; HTMLArea.needsClosingTag = function(el) { return el && el.nodeType == 1 && (HTMLArea._closingTags.indexOf(" " + el.tagName.toLowerCase() + " ") != -1); }; |