From df2ae669423f98266f4f2a6ca66f128d0d3a4d08 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 6 Jan 2023 15:16:01 +0900 Subject: [PATCH] Bug fix for loading after new/save/delete --- www/lib/CoreLibs/Admin/EditBase.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/lib/CoreLibs/Admin/EditBase.php b/www/lib/CoreLibs/Admin/EditBase.php index cf6c496d..46a37a47 100644 --- a/www/lib/CoreLibs/Admin/EditBase.php +++ b/www/lib/CoreLibs/Admin/EditBase.php @@ -242,7 +242,11 @@ class EditBase $this->form->formProcedureSave(); $this->form->formProcedureDelete(); // delete call only if those two are set + // and we are not in new/save/master delete if ( + !$this->form->new && + !$this->form->save && + !$this->form->delete && !empty($_POST['element_list']) && !empty($_POST['remove_name']) ) {