Changes between Initial Version and Version 1 of Ticket #56, comment 1
- Timestamp:
- 2023-04-19T01:22:34Z (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56, comment 1
initial v1 1 1 Discovered a backwards incompatible change to Bleach which sanitizes user input. We typically add a couple of html tags to bleach.ALLOWED_TAGS (sub, sup and °) which uses a frozenset now instead of a list. Needs a tempory re-cast to a list. 2 3 Now fixed by casting as a list for the additions and recasting as frozenlist afterwards.