From: Cash Costello Date: Sat, 22 Dec 2012 18:56:54 +0000 (-0500) Subject: Fixes #4856 removed incorrect argument to create_object_entity() X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=2d8bef1f96c811dbed0f7636b5acc128d36ee53b;p=lorea%2Felgg.git Fixes #4856 removed incorrect argument to create_object_entity() --- diff --git a/engine/classes/ElggObject.php b/engine/classes/ElggObject.php index 84f6e09c8..6263f84f6 100644 --- a/engine/classes/ElggObject.php +++ b/engine/classes/ElggObject.php @@ -130,7 +130,7 @@ class ElggObject extends ElggEntity { // Save ElggObject-specific attributes return create_object_entity($this->get('guid'), $this->get('title'), - $this->get('description'), $this->get('container_guid')); + $this->get('description')); } /**