From 6e68ba21ffeb43e06e94a78c4f10fec910cf578e Mon Sep 17 00:00:00 2001 From: Sascha Greuel Date: Sun, 15 Oct 2017 00:53:19 +0200 Subject: [PATCH] Added missing packageID property --- .../lib/acp/form/BBCodeMediaProviderAddForm.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wcfsetup/install/files/lib/acp/form/BBCodeMediaProviderAddForm.class.php b/wcfsetup/install/files/lib/acp/form/BBCodeMediaProviderAddForm.class.php index 7f35c5a9f0..dd383367ab 100644 --- a/wcfsetup/install/files/lib/acp/form/BBCodeMediaProviderAddForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/BBCodeMediaProviderAddForm.class.php @@ -29,6 +29,12 @@ class BBCodeMediaProviderAddForm extends AbstractForm { */ public $className = ''; + /** + * media provider package id + * @var integer + */ + public $packageID = PACKAGE_ID; + /** * html value * @var string @@ -111,6 +117,7 @@ class BBCodeMediaProviderAddForm extends AbstractForm { 'regex' => $this->regex, 'html' => $this->html, 'className' => $this->className, + 'packageID' => $this->packageID, 'name' => $name ])]); $returnValues = $this->objectAction->executeAction(); -- 2.20.1