From 4c237b2253ea9583d999b8b6a303d73a7d260a80 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 30 Dec 2010 15:43:58 +0100 Subject: [PATCH] fixed typo --- CHANGELOG | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ed42c2f..72ff1b4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,14 +2,14 @@ Backward incompatibilities: - * the items filter, which has been deprecated for quite a long time now, has been removed - * the range filter has been converted to a function: 0|range(10) -> range(0, 10) - * the constant filter has been converted to a function: {{ some_date|date('DATE_W3C'|constant) }} -> {{ some_date|date(constant('DATE_W3C')) }} - * the cycle filter has been converted to a function: {{ ['odd', 'even']|cycle(i) }} -> {{ cycle(['odd', 'even'], i) }} - * the for tag does not support "joined by" anymore - * the autoescape first argument is now true/false (instead of on/off) - * the parent tag has been replaced by a parent function ({{ parent() }} instead of {% parent %}) - * the display tag has been replaced by a block function ({{ bloc('title') }} instead of {% display title %}) + * the "items" filter, which has been deprecated for quite a long time now, has been removed + * the "range" filter has been converted to a function: 0|range(10) -> range(0, 10) + * the "constant" filter has been converted to a function: {{ some_date|date('DATE_W3C'|constant) }} -> {{ some_date|date(constant('DATE_W3C')) }} + * the "cycle" filter has been converted to a function: {{ ['odd', 'even']|cycle(i) }} -> {{ cycle(['odd', 'even'], i) }} + * the "for" tag does not support "joined by" anymore + * the "autoescape" first argument is now "true"/"false" (instead of "on"/"off") + * the "parent" tag has been replaced by a "parent" function ({{ parent() }} instead of {% parent %}) + * the "display" tag has been replaced by a "block" function ({{ block('title') }} instead of {% display title %}) Changes: -- 1.7.2.5