udpated CHANGELOG
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 Oct 2014 17:13:04 +0000 (19:13 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 Oct 2014 17:13:04 +0000 (19:13 +0200)
CHANGELOG
lib/Twig/Extension/Core.php

index eda7311..a4239da 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 1.16.1 (2014-XX-XX)
 
+ * sped up the slice filter
  * fixed for mb function overload mb_substr acting different
  * fixed the attribute() function when passing a variable for the arguments
 
index b8953fc..959b590 100644 (file)
@@ -692,7 +692,6 @@ function twig_array_merge($arr1, $arr2)
 function twig_slice(Twig_Environment $env, $item, $start, $length = null, $preserveKeys = false)
 {
     if ($item instanceof Traversable) {
-
         if ($item instanceof IteratorAggregate) {
             $item = $item->getIterator();
         }