updated CHANGELOG

This commit is contained in:
Fabien Potencier
2016-12-05 09:53:08 +01:00
parent 6ab2774002
commit ae9b503b17
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1,5 +1,6 @@
* 1.29.0 (2016-XX-XX)
* deprecated silent display of undefined blocks
* deprecated support for mbstring.func_overload != 0
* 1.28.2 (2016-11-23)
+1 -1
View File
@@ -203,7 +203,7 @@ abstract class Twig_Template implements Twig_TemplateInterface
}
if (!$this->hasBlock($name, $context, $blocks)) {
@trigger_error(sprintf('Displaying undefined block "%s" in template "%s" is deprecated since version 1.29 and will throw an exception in 2.0.', $name, $this->getTemplateName()), E_USER_DEPRECATED);
@trigger_error(sprintf('Silent display of undefined block "%s" in template "%s" is deprecated since version 1.29 and will throw an exception in 2.0.', $name, $this->getTemplateName()), E_USER_DEPRECATED);
}
if (null !== $template) {