openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6a5fccc78b59642dc44937de1d68ae67ffd1e5e4
parent 7ad48a722946b8fcb2f2f87f08fca5c5e9bece20
Author: Jan Dankert <devnull@localhost>
Date:   Wed,  5 Sep 2018 23:49:38 +0200

Kleiner Bugfix...

Diffstat:
modules/template-engine/components/html/Component.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/template-engine/components/html/Component.class.php b/modules/template-engine/components/html/Component.class.php @@ -153,7 +153,7 @@ class Expression case 'text': return $this->value; default: - throw new \LogicException("Invalid expression type '$type' in attribute value. Allowed: text|var"); + throw new \LogicException("Invalid expression type '$this->type' in attribute value. Allowed: text|var"); } }