From 8f4260e2a46eba16ebc2462ec1d23260e8377482 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 9 Jun 2008 12:15:18 +0000 Subject: Interim fix for user saving git-svn-id: https://code.elgg.org/elgg/trunk@830 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 52ed40f8b..db3665c6f 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -385,8 +385,9 @@ * Save generic attributes to the entities table. */ public function save() - { - if ($this->guid != "" && $this->guid > 0) + { + $guid = (int) $this->guid; + if ($guid > 0) { return update_entity( $this->get('guid'), -- cgit v1.2.3