Skip to content

Commit

Permalink
fix typo and comma splice error (#1555)
Browse files Browse the repository at this point in the history
* fix typo and comma splice error
* update for small typo change in HTML control panel
  • Loading branch information
tkimnguyen authored and jensens committed May 5, 2016
1 parent 2e83bff commit 934b86a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Fixes:

- Do not hard-code baseUrl in bundle to avoid bad URL when switching domains.
[ebrehault]

- fix typo and comma splice error in HTML filtering control panel [tkimnguyen]


5.1a1 (2016-03-31)
Expand Down
4 changes: 2 additions & 2 deletions Products/CMFPlone/interfaces/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,14 +337,14 @@ class IFilterSchema(Interface):

disable_filtering = schema.Bool(
title=_(u'Disable html filtering'),
description=_(u'Warning, disabling can be potentially dangereous. '
description=_(u'Warning: disabling this can be dangerous. '
u'Only disable if you know what you are doing.'),
default=False,
required=False)

nasty_tags = schema.List(
title=_(u'Nasty tags'),
description=_(u"These tags, and their content are completely blocked "
description=_(u"These tags and their content are completely blocked "
"when a page is saved or rendered."),
default=[u'style', u'object', u'embed', u'applet', u'script', u'meta'],
value_type=schema.TextLine(),
Expand Down

0 comments on commit 934b86a

Please sign in to comment.