From 338341d05d8cf4a5be1d532b9f29c7cd814ac62c Mon Sep 17 00:00:00 2001 From: RouL Date: Sun, 8 Jan 2012 15:48:47 +0100 Subject: [PATCH] Fixed the "public static %basClass" problem in other classes --- .../files/lib/data/event/listener/EventListenerEditor.class.php | 2 +- .../files/lib/data/object/type/ObjectTypeEditor.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/lib/data/event/listener/EventListenerEditor.class.php b/wcfsetup/install/files/lib/data/event/listener/EventListenerEditor.class.php index e90d6d9e98..50b1290b4b 100644 --- a/wcfsetup/install/files/lib/data/event/listener/EventListenerEditor.class.php +++ b/wcfsetup/install/files/lib/data/event/listener/EventListenerEditor.class.php @@ -16,5 +16,5 @@ class EventListenerEditor extends DatabaseObjectEditor { /** * @see wcf\data\DatabaseObjectDecorator::$baseClass */ - public static $baseClass = 'wcf\data\event\listener\EventListener'; + protected static $baseClass = 'wcf\data\event\listener\EventListener'; } diff --git a/wcfsetup/install/files/lib/data/object/type/ObjectTypeEditor.class.php b/wcfsetup/install/files/lib/data/object/type/ObjectTypeEditor.class.php index c86506d466..2a3cf73e5d 100644 --- a/wcfsetup/install/files/lib/data/object/type/ObjectTypeEditor.class.php +++ b/wcfsetup/install/files/lib/data/object/type/ObjectTypeEditor.class.php @@ -16,5 +16,5 @@ class ObjectTypeEditor extends DatabaseObjectEditor { /** * @see wcf\data\DatabaseObjectDecorator::$baseClass */ - public static $baseClass = 'wcf\data\object\type\ObjectType'; + protected static $baseClass = 'wcf\data\object\type\ObjectType'; } -- 2.20.1