$value) { // delete normal tag if it exists if (is_array($image->tags)) { $index = array_search($value, $image->tags); if ($index !== false) { $tagarray = $image->tags; unset($tagarray[$index]); $image->clearMetadata('tags'); $image->tags = $tagarray; } } else { if ($value === $image->tags) { $image->clearMetadata('tags'); } } // delete relationship if this tag is a user $annotation = get_annotation($id); $photo_tag = unserialize($annotation->value); if ($photo_tag->type == 'user') { remove_entity_relationship($photo_tag->value, 'phototag', $image_guid); } // delete the photo tag annotation delete_annotation($id); } system_message(elgg_echo("tidypics:deletetag:success")); forward($_SERVER['HTTP_REFERER']);