Opened 16 years ago
Closed 16 years ago
#2943 closed Bug (invalid)
The FCKConfig.CoreStyles[''] setting was not found. Please check the fckconfig.js file
Reported by: | Aimo | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Styles | Version: | FCKeditor 2.6.4 |
Keywords: | FCKConfig, FontFormats, CoreStyles | Cc: | trent@… |
Description
Browser shows alert (FF3 and Opera 9.63. IE7 doesn't)
"The FCKConfig.CoreStyles[] setting was not found. Please check the fckconfig.js file"
when i set FCKConfig.FontFormats = 'p;h2;h3;h4;h5;pre;' ;
Both alerting browsers still render the iframe for the dropdown. IE7 again doesn't.
Without this setting all browsers do just fine.
Change History (3)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Additionally IE7 renders the iframes height too small and without scroll bar.
comment:3 Changed 16 years ago by
Cc: | trent@… added |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Version: | SVN → FCKeditor 2.6.4 |
This happens because the "FCKConfig.FontFormats" option incorrectly contains a semi-colon character at the end of the list - which doesn't appear in the default installation where FCKConfig.FontFormats = 'p;h1;h2;h3;h4;h5;h6;pre;address;div' ; is the original line entry.
Remove the semi-colon and you won't get the error: FCKConfig.FontFormats = 'p;h2;h3;h4;h5;pre' ;
Suppose it was cached on IE7 as it now does the same with it...