diff options
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r-- | engine/lib/annotations.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 47903616a..df0f2a043 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -785,8 +785,12 @@ $id = (int)$id;
$access = get_access_sql_suffix();
-
- return delete_data("DELETE from {$CONFIG->dbprefix}annotations where id=$id and $access");
+ $annotation = get_annotation($id); + + if (trigger_elgg_event('delete', 'annotation', $annotation))
+ return delete_data("DELETE from {$CONFIG->dbprefix}annotations where id=$id and $access"); + + return false;
}
/**
|