From 2b14b6bf7a42a7529db379f4e79e8f4db3f01be7 Mon Sep 17 00:00:00 2001 From: Beu Date: Thu, 6 Jul 2023 21:28:14 +0200 Subject: [PATCH] add missing property --- libs/FML/Controls/TextEdit.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/FML/Controls/TextEdit.php b/libs/FML/Controls/TextEdit.php index 4dfbd07c..13238767 100644 --- a/libs/FML/Controls/TextEdit.php +++ b/libs/FML/Controls/TextEdit.php @@ -26,6 +26,11 @@ class TextEdit extends Control implements MultiLineable, Scriptable, Styleable, const FORMAT_Password = "Password"; const FORMAT_NewPassword = "NewPassword"; + /** + * @var string $name TextEdit name + */ + protected $name = null; + /** * @var string $default Default value */