Logged In: YES
user_id=1356422
Another related problem with TH: they aren't filled with
like TD if the cell is empty and
FCKConfig.FillEmptyBlocks is true.
To fix it just add the TH to the FCKRegexLib.BlockElements
in internals\fckregexlib.js :
FCKRegexLib.BlockElements =
/^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TD|TH|TABLE|CAPTION)$/i
;
Just in the same file, the ObjectElements regex also is
missing THs, adding should help to be able to style them (I
haven't tested still that)
// Used by the Styles combo to identify styles that can't be
applied to text.
FCKRegexLib.ObjectElements =
/^(?:IMG|TABLE|TR|TD|TH|INPUT|SELECT|TEXTAREA|HR|OBJECT)$/i ;