Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update HTMLFilter default values to fix TinyMCE styling features [5.2] #3103

Merged
merged 1 commit into from May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion Products/CMFPlone/interfaces/controlpanel.py
Expand Up @@ -246,6 +246,7 @@ class IFilterSchema(Interface):
u'head',
u'header',
u'hgroup',
u'hr',
u'html',
u'i',
u'iframe',
Expand Down Expand Up @@ -297,7 +298,7 @@ class IFilterSchema(Interface):
custom_attributes = schema.List(
title=_(u'Custom attributes'),
description=_(u'These attributes are additionally allowed.'),
default=[],
default=['style'],
value_type=schema.TextLine(),
missing_value=[],
required=False)
Expand Down
2 changes: 2 additions & 0 deletions news/2482.bugfix
@@ -0,0 +1,2 @@
Update HTMLFilter settings to enable TinyMCE styling features. See #2329, #2482, #2535
[petschki]