diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-09 10:38:29 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-09 10:38:29 +0000 |
commit | 9d2a2514ceb62a72b32ed3a17703c8cff370cec1 (patch) | |
tree | 3d1b61f53d439683775cba2fa735530ac0325dd4 /engine | |
parent | 6420fc4aad904c1625f6e323ea613044dc966a84 (diff) | |
download | elgg-9d2a2514ceb62a72b32ed3a17703c8cff370cec1.tar.gz elgg-9d2a2514ceb62a72b32ed3a17703c8cff370cec1.tar.bz2 |
Fixed issue on save
git-svn-id: https://code.elgg.org/elgg/trunk@825 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/entities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index f08c58383..703c5c891 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -386,7 +386,7 @@ */ public function save() { - if (($this->get('guid') != "") || ($this->get('guid') > 0)) + if (!empty($this->guid)) { return update_entity( $this->get('guid'), |