mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 02:16:41 +00:00
updated CHANGELOG
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user