diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-06 11:23:50 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-06 11:23:50 +0000 |
commit | 58980819547175cd6c4ccd447bde84b8a83076a7 (patch) | |
tree | 683213f38f752649ba935d7d4e88235da18833b8 | |
parent | 68c36b6a64f924a7b89e0c53d20e30bee7178374 (diff) | |
download | elgg-58980819547175cd6c4ccd447bde84b8a83076a7.tar.gz elgg-58980819547175cd6c4ccd447bde84b8a83076a7.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Ability to change owner
git-svn-id: https://code.elgg.org/elgg/trunk@89 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/annotations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index e73e04889..130cf12a2 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -84,7 +84,7 @@ function save() { - if (isset($this->id)) + if ($this->id > 0) return update_annotation($this->id, $this->name, $this->value, $this->value_type, $this->owner_id, $this->access_id); else { @@ -215,7 +215,7 @@ $access = get_access_list(); - return update_data("UPDATE {$CONFIG->dbprefix}annotations set value='$value', value_type='$value_type', access_id=$access_id where id=$annotation_id and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); + return update_data("UPDATE {$CONFIG->dbprefix}annotations set value='$value', value_type='$value_type', access_id=$access_id, owner_id=$owner_id where id=$annotation_id and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); } /** |