From 0274ff5bf46bcbc41a273d3d2c36abee86707154 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Tue, 23 Sep 2025 14:44:07 +0200 Subject: [PATCH] InlineFormView: remove support for unused 'html_after' property --- templates/InlineFormView.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/templates/InlineFormView.php b/templates/InlineFormView.php index b3f7368..c6f1736 100644 --- a/templates/InlineFormView.php +++ b/templates/InlineFormView.php @@ -29,9 +29,6 @@ class InlineFormView self::renderSelectBox($field, $name); else self::renderInputBox($field, $name); - - if (isset($field['html_after'])) - echo $field['html_after']; } } @@ -42,9 +39,6 @@ class InlineFormView foreach ($form['buttons'] as $name => $button) { self::renderSubmitButton($button, $name); - - if (isset($button['html_after'])) - echo $button['html_after']; } if (!empty($form['is_group']))