Changes between Initial Version and Version 1 of Ticket #24960
- Timestamp:
- Jun 9, 2015, 4:36:51 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24960
- Property Keywords UnicodeDecodeError added; UnicodeEncodeError removed
- Property Summary {{ block.super }} hides UnicodeEncodeErrors → {{ block.super }} hides UnicodeDecodeErrors
-
Ticket #24960 – Description
initial v1 1 1 When using {{ block.super }}, it behaves like a normal variable which leads to the following issue: 2 2 3 As soon as the block.super raises a Unicode EncodeError, {{ block.super }} evaluates to an empty string.3 As soon as the block.super raises a UnicodeDecodeError, {{ block.super }} evaluates to an empty string. 4 4 5 5 When using {{ block.super }} in cascading base templates, this frequently leads to blank pages which are hard to debug.