diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 00:35:25 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 00:35:25 +0000 |
commit | 53ea92ac68d3024f42a9b1feb235492c2545de6b (patch) | |
tree | c915aeb26a6cf7b24e467a820e843ecb0dd3e70e /engine | |
parent | 7c8bad89d27b18668622db2a36752653d3f3789c (diff) | |
download | elgg-53ea92ac68d3024f42a9b1feb235492c2545de6b.tar.gz elgg-53ea92ac68d3024f42a9b1feb235492c2545de6b.tar.bz2 |
Refs #2597: ElggEntity::initializeAttributes calls into parent initializeAttributes()
git-svn-id: http://code.elgg.org/elgg/trunk@7160 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/classes/ElggEntity.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index 571ef890f..8ff9f23cc 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -84,6 +84,8 @@ abstract class ElggEntity extends ElggData implements * @return void */ protected function initializeAttributes() { + parent::initializeAttributes(); + initialise_entity_cache(); if (!is_array($this->temp_metadata)) { |