aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-12-22 13:56:54 -0500
committerCash Costello <cash.costello@gmail.com>2012-12-22 13:56:54 -0500
commit2d8bef1f96c811dbed0f7636b5acc128d36ee53b (patch)
tree70b10263251f5ca78d51b484e3cb6702ab76d3eb /engine
parent9272e4210274d49ec77b7bcfc07ff0e14e222721 (diff)
downloadelgg-2d8bef1f96c811dbed0f7636b5acc128d36ee53b.tar.gz
elgg-2d8bef1f96c811dbed0f7636b5acc128d36ee53b.tar.bz2
Fixes #4856 removed incorrect argument to create_object_entity()
Diffstat (limited to 'engine')
-rw-r--r--engine/classes/ElggObject.php2
1 files changed, 1 insertions, 1 deletions
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'));
}
/**