Changes between Initial Version and Version 1 of Ticket #24960


Ignore:
Timestamp:
Jun 9, 2015, 4:36:51 AM (9 years ago)
Author:
Sven R. Kunze
Comment:

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  
    11When using {{ block.super }}, it behaves like a normal variable which leads to the following issue:
    22
    3 As soon as the block.super raises a UnicodeEncodeError, {{ block.super }} evaluates to an empty string.
     3As soon as the block.super raises a UnicodeDecodeError, {{ block.super }} evaluates to an empty string.
    44
    55When using {{ block.super }} in cascading base templates, this frequently leads to blank pages which are hard to debug.
Back to Top