From cd7603a8ac6162b2826a13ebe1d37efa34966d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be> Date: Tue, 22 Jan 2019 17:25:14 +0100 Subject: [PATCH] :ambulance: fix(5897) Add missing initialization of $templatable in BooleanAttribute The merge in 1.3-dev took part of other changes without taking the initialization for this attribute, which messed things up. Should be better like this. issue #5897 --- include/simpleplugin/attributes/class_BooleanAttribute.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/include/simpleplugin/attributes/class_BooleanAttribute.inc b/include/simpleplugin/attributes/class_BooleanAttribute.inc index 89bbc812d..4930296bb 100644 --- a/include/simpleplugin/attributes/class_BooleanAttribute.inc +++ b/include/simpleplugin/attributes/class_BooleanAttribute.inc @@ -25,6 +25,7 @@ class BooleanAttribute extends Attribute { public $trueValue; public $falseValue; + protected $templatable = TRUE; /*! \brief The constructor of BooleanAttribute * -- GitLab