Ticket #1673 (closed Bug: invalid)
Syntax error found in fckstyles.xml file
| Reported by: | latentdabbler | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Styles | Version: | FCKeditor 2.5 |
| Keywords: | Cc: |
Description
I found what I think is a syntax error in the fckeditor.xml file.
Lines 64-69 say this:
<Style name="Marker: Yellow" element="span"> <Style name="background-color" value="Yellow" /> </Style> <Style name="Marker: Green" element="span"> <Style name="background-color" value="Lime" /> </Style>
When I changed them to the following, Firebug stopped showing me an error:
<Style name="Marker: Yellow" element="span"> <Attribute name="background-color" value="Yellow" /> </Style> <Style name="Marker: Green" element="span"> <Attribute name="background-color" value="Lime" /> </Style>
So, the <Attribute>'s were typed in as <Style>. I just checked the nightly build and it's still this way.
Change History
Note: See
TracTickets for help on using
tickets.