From 7bbb9b81bed9de4f66481b425ee7846163598b20 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Tue, 4 Jul 2023 08:25:40 +0200 Subject: [PATCH] fix(section): cannot rename section twice --- inc/section.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/section.class.php b/inc/section.class.php index a5e4ca4c5..1bea5ebb3 100644 --- a/inc/section.class.php +++ b/inc/section.class.php @@ -552,7 +552,7 @@ public function getDesignLabel(): string { ]); $formId = $this->fields[PluginFormcreatorForm::getForeignKeyField()]; $onclick = 'plugin_formcreator.showSectionForm(' . $formId . ', ' . $sectionId . ');'; - $html = ''; + $html = ''; $html .= "$nb"; $html .= ''; $html .= empty($this->fields['name']) ? '(' . $sectionId . ')' : $this->fields['name'];