diff --git a/.gitignore b/.gitignore index 9b9db1ba0..0ba0d4da6 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,3 @@ /system/tests/composer.lock /system/tests/support/_generated system/system -system/templates/base/package-lock.json diff --git a/system/classes/html/form/Banner.php b/system/classes/html/form/Banner.php index 18f7c6178..5c28a692c 100644 --- a/system/classes/html/form/Banner.php +++ b/system/classes/html/form/Banner.php @@ -15,12 +15,10 @@ class Banner extends \Html\Form\FormElement use \Html\GlobalAttributes, \Html\Events; - public $form; public $name; - public $required; public $value; - static $_excludeFromOutput = ["value", "label"]; + static $_excludeFromOutput = ["value"]; /** * Returns built string of Banner field @@ -40,50 +38,19 @@ public function __toString() return $buffer . '>' . $this->value . ''; } - /** - * The form element that the Banner is associated with (its - * "form owner"). The value of the attribute must be the ID of a form - * element in the same document. If this attribute is not specified, the - *