diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/photos/image/untag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/photos/image/untag.php b/actions/photos/image/untag.php index 012f98930..11c433a61 100644 --- a/actions/photos/image/untag.php +++ b/actions/photos/image/untag.php @@ -3,7 +3,7 @@ * Remove photo tag action */ -$annotation = get_annotation(get_input('annotation_id')); +$annotation = elgg_get_annotation_from_id(get_input('annotation_id')); if (!$annotation instanceof ElggAnnotation || $annotation->name != 'phototag') { register_error(elgg_echo("tidypics:phototagging:delete:error")); |