diff options
-rw-r--r-- | actions/addtag.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/actions/addtag.php b/actions/addtag.php index 562d53882..dc4274728 100644 --- a/actions/addtag.php +++ b/actions/addtag.php @@ -1,6 +1,6 @@ <?php
/**
- * Tidypics Add Tag
+ * Tidypics Add Photo Tag
*
*/
@@ -67,6 +67,12 @@ //Save annotation
if ($image->annotate('phototag', serialize($tag), $access_id, $owner_id)) {
+ // if tag is a user id, add relationship for searching (find all images with user x)
+ if ($relationships_type === 'user') {
+ if (!check_entity_relationship($user_id, 'phototag', $image_guid))
+ add_entity_relationship($user_id, 'phototag', $image_guid);
+ }
+
system_message(elgg_echo("tidypics:phototagging:success"));
}
|