fixed unit test, updated CHANGELOG
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 27 Jul 2011 12:25:09 +0000 (14:25 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 27 Jul 2011 12:25:09 +0000 (14:25 +0200)
CHANGELOG
lib/Twig/Extension/Core.php

index 684d4d3..6f02247 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 1.1.2
 
+ * fixed json_encode filter on PHP 5.2
  * fixed regression introduced in 1.1.1 ({{ block(foo|lower) }})
  * fixed inheritance when using conditional parents
  * fixed compilation of templates when the body of a child template is not empty
index 9013a83..671becb 100644 (file)
@@ -251,8 +251,7 @@ function twig_urlencode_filter($url, $raw = false)
     return urlencode($url);
 }
 
-if (version_compare(PHP_VERSION, '5.3.0', '<'))
-{
+if (version_compare(PHP_VERSION, '5.3.0', '<')) {
     /**
      * JSON encodes a PHP variable.
      *