diff options
author | cash <cash.costello@gmail.com> | 2011-11-18 21:57:52 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-28 21:44:00 -0500 |
commit | 1cfd760ee857011499b999ce282b5c1a98b94dca (patch) | |
tree | 5ed1db25465d30bc36f049dff5c8e5df216e2165 /engine/classes/ElggGroup.php | |
parent | b12039be030a54fa05dc3758254542075b130f34 (diff) | |
download | elgg-1cfd760ee857011499b999ce282b5c1a98b94dca.tar.gz elgg-1cfd760ee857011499b999ce282b5c1a98b94dca.tar.bz2 |
Fixes #4111 guid is now an int
Diffstat (limited to 'engine/classes/ElggGroup.php')
-rw-r--r-- | engine/classes/ElggGroup.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/classes/ElggGroup.php b/engine/classes/ElggGroup.php index 5c16e978f..0190e5eac 100644 --- a/engine/classes/ElggGroup.php +++ b/engine/classes/ElggGroup.php @@ -349,6 +349,9 @@ class ElggGroup extends ElggEntity $this->attributes[$key] = $value; } + // guid needs to be an int http://trac.elgg.org/ticket/4111 + $this->attributes['guid'] = (int)$this->attributes['guid']; + return true; } |