From: Matthias Schmidt Date: Tue, 20 Sep 2016 16:08:18 +0000 (+0200) Subject: Fix creating multiple boxes after each other X-Git-Tag: 3.0.0_Beta_1~63 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0fb7cac34400271d2df8bbfc83a04d565e82537a;p=GitHub%2FWoltLab%2FWCF.git Fix creating multiple boxes after each other `boxType` is no “classical” input field which needs to be/may be reseted. --- diff --git a/wcfsetup/install/files/lib/acp/form/BoxAddForm.class.php b/wcfsetup/install/files/lib/acp/form/BoxAddForm.class.php index 60e1a1b249..d21e0dc3e4 100644 --- a/wcfsetup/install/files/lib/acp/form/BoxAddForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/BoxAddForm.class.php @@ -500,7 +500,7 @@ class BoxAddForm extends AbstractForm { WCF::getTPL()->assign('success', true); // reset variables - $this->boxType = $this->position = $this->cssClassName = $this->name = ''; + $this->position = $this->cssClassName = $this->name = ''; $this->showOrder = $this->boxControllerID = 0; $this->visibleEverywhere = $this->showHeader = 1; $this->title = $this->content = $this->images = $this->imageID = $this->pageIDs = $this->aclValues = [];