tweaked previous merge
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 15 Jan 2013 19:56:11 +0000 (20:56 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 15 Jan 2013 19:56:11 +0000 (20:56 +0100)
CHANGELOG
doc/functions/constant.rst
lib/Twig/Extension/Core.php

index 83656dd..d2767b9 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 1.12.1 (2013-XX-XX)
 
+ * added support for object instances as the second argument of the constant function
  * relaxed globals management to avoid a BC break
  * added support for {{ some_string[:2] }}
 
index 0fc190e..bea0e9f 100644 (file)
@@ -1,8 +1,8 @@
 ``constant``
 ============
 
-.. versionadded: 1.13
-    constant() now accepts object instances as the second argument.
+.. versionadded: 1.12.1
+    constant now accepts object instances as the second argument.
 
 ``constant`` returns the constant value for a given string:
 
@@ -11,7 +11,7 @@
     {{ some_date|date(constant('DATE_W3C')) }}
     {{ constant('Namespace\\Classname::CONSTANT_NAME') }}
 
-As of 1.13 you can read constants from object instances as well:
+As of 1.12.1 you can read constants from object instances as well:
 
 .. code-block:: jinja
 
index 077ac5b..2110120 100644 (file)
@@ -1258,11 +1258,10 @@ function twig_include(Twig_Environment $env, $context, $template, $variables = a
 }
 
 /**
- * Wrapper around constant() provides the ability to get constants
- * from instances as well as class/global constants.
+ * Provides the ability to get constants from instances as well as class/global constants.
  *
- * @param string $constant The name of the constant.
- * @param null|object $object The object to get the constant from.
+ * @param string      $constant The name of the constant
+ * @param null|object $object   The object to get the constant from
  *
  * @return string
  */