Fix DatabaseObjectDecorator::getData() calls
authorMatthias Schmidt <gravatronics@live.com>
Thu, 9 Oct 2014 18:04:37 +0000 (20:04 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Thu, 9 Oct 2014 18:04:37 +0000 (20:04 +0200)
wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php

index 6b0f7afe794a95d51c3d48babfb96ae32157e07d..ee75b6f2d28cc4a641e5d4a0a0901ecf10f9a5d7 100644 (file)
@@ -63,6 +63,13 @@ abstract class DatabaseObjectDecorator extends DatabaseObject {
                return $this->object->getObjectID();
        }
        
+       /**
+        * @see \wcf\data\IStorableObject::getData()
+        */
+       public function getData() {
+               return $this->object->getData();
+       }
+       
        /**
         * Delegates inaccessible methods calls to the decorated object.
         *