Form: rename 'content_above' to 'before_fields'

This commit is contained in:
2025-09-11 19:59:53 +02:00
parent be51946436
commit f88d1885a2
2 changed files with 4 additions and 4 deletions

View File

@@ -31,8 +31,8 @@ class FormView extends SubTemplate
echo '
<form action="', $this->form->request_url, '" method="', $this->form->request_method, '" enctype="multipart/form-data">';
if (isset($this->form->content_above))
echo $this->form->content_above;
if (isset($this->form->before_fields))
echo $this->form->before_fields;
$this->missing = $this->form->getMissing();
$this->data = $this->form->getData();