Opened 17 years ago
Closed 16 years ago
#2347 closed Bug (fixed)
IE: The "id" attribute of <hr> elements get lost
Reported by: | Frederico Caldeira Knabben | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | SVN (FCKeditor) - Retired |
Keywords: | Confirmed IE | Cc: |
Description
Pasting the following code in the source:
<hr id="test" />
Switching to WYSIWYG and back to source gives us:
<hr />
Confirmed with IE. Ok with Firefox.
for v2.6.2, changed fckdocumentprocessor.js line 215 from
newHR.mergeAttributes( eHR, true ) ;
to
newHR.mergeAttributes( eHR, true ) if(eHR.id) {
}