From: Tobias Schultze Date: Wed, 31 Oct 2012 16:51:00 +0000 (+0100) Subject: added changelog entry about fixed boolean array access X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=fdfd506caf5e72a90b8e5d9742c563bacd3c840b;p=web%2Fkonrad%2Ftwig.git added changelog entry about fixed boolean array access --- diff --git a/CHANGELOG b/CHANGELOG index 27c22cd..afdea49 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ * added a batch filter * added support for encoding an array as query string in the url_encode filter * fixed getting a numeric-like item on a variable ('09' for instance) + * fixed getting a boolean or float key on an array, so it is consistent with PHP's array access: `{{ array[false] }}` behaves the same as `echo $array[false];` (equals `$array[0]`) * 1.12.2 (2013-02-09)