Opened 9 years ago

Closed 9 years ago

#13115 closed Bug (invalid)

HTML tags displays in version 4.4.4

Reported by: Chris Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Having HTML tags display in within ckeditor textarea box. Below is my config.js settings. Example:

  1. Input "<p>Hello </ br></ br>test</p>"
  2. Save
  3. Displays as when re-open: "<p>&lt;p&gt;Hello &lt;/ br&gt;&lt;/ br&gt;test&lt;/p&gt;</p>"

config.skin = 'bootstrapck'; config.uiColor = '#EFEFDE';

config.removePlugins = 'elementspath,resize'; config.extraPlugins = 'aspspellcheck'; config.indentOffset = 4; /*config.enterMode = CKEDITOR.ENTER_BR;*/

config.htmlEncodeOutput = true;

config.allowedContent = true; config.toolbar_PRACTICE_1 = [

['Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'aspspellcheck', 'Font', 'FontSize', 'TextColor', 'BGColor']

];

Change History (1)

comment:1 Changed 9 years ago by Piotrek Koszuliński

Resolution: invalid
Status: newclosed

You encode the output too many times (when saving or loading data). It's not a CKEditor bug.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy