The stabilization of FCKeditor 2.6.3 Beta has been completed successfully with a few minor issues being fixed. We are happy to bring another nice release to public, with some important new features.
Tue, 08/05/2008 - 13:07
#1

Issues with styles in version 2.6.x ?
h2 class="test"a class="lightbox"
Re: FCKeditor 2.6.3 released
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
there is still a issue when paste from MS word
I'm a chinese
there is still a issue when paste from MS word
Re: FCKeditor 2.6.3 released
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: FCKeditor 2.6.3 released
I'm a chinese!
Issue in TypeConfig.cs for the uploader capability in FileBr
I think the file browser ASP.NET CheckIsAllowedExtension function might have an error in it. From what I see, it is returning false if a denied extension is not found. See the code below. I think the "!" needs to be removed from the DeniedExtensions check. For the ASP.NET upload code to work right now, the DeniedExtensions need to have the same settings as the AllowedExtensions, which probably isn't the intention of the DeniedExtensions setting.
internal bool CheckIsAllowedExtension( string extension ) { // Do not accept empty settings. if ( AllowedExtensions.Length == 0 && DeniedExtensions.Length == 0 ) return false; if ( DeniedExtensions.Length > 0 && !Util.ArrayContains( DeniedExtensions, extension, System.Collections.CaseInsensitiveComparer.DefaultInvariant ) ) return false; if ( AllowedExtensions.Length > 0 && !Util.ArrayContains( AllowedExtensions, extension, System.Collections.CaseInsensitiveComparer.DefaultInvariant ) ) return false; return true;Hope this post is helpful.
Paul
Re: FCKeditor 2.6.3 released
dev site
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: FCKeditor 2.6.3 released
I downgraded to 2.6.0 and it works again.
Re: FCKeditor 2.6.3 released
Can anyone tell me how to add new tool in FCKEditor 2.6.3, I am trying to add a webEQ editor, on click of button it should open webeq editor. and watever i write there should display in fckeditor.
Please help