aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/annotations.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-27 16:19:23 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-27 16:19:23 +0000
commit252990170bc0f55c159328cf186012174cab0a93 (patch)
tree49950f00d6d783d1ea269dc96bd3bf1827d1adda /engine/lib/annotations.php
parentacfe3fb53ed587c012e424f965b6efaec44aa8aa (diff)
downloadelgg-252990170bc0f55c159328cf186012174cab0a93.tar.gz
elgg-252990170bc0f55c159328cf186012174cab0a93.tar.bz2
Delete event now triggered on metadata and annotation delete
git-svn-id: https://code.elgg.org/elgg/trunk@3305 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r--engine/lib/annotations.php8
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;
}
/**