summaryrefslogtreecommitdiff
path: root/modules/notification
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-30 14:23:57 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-30 14:23:57 -0700
commit90465012d18b9d795d315e2fdf0461b39716b0a5 (patch)
tree7af185d8150c03f813557c9543901dd66e67fb1d /modules/notification
parent294215258a30bb0e99701655ce2b69271446a867 (diff)
Patch to clean up loose ends when a user is deleted.
* For items and tasks the owner id is set to admin * For notification subscriptions, the subscription is deleted * For comments, I've extracted the user name, email and url and set the guest_name, guest_email and guest_url columns while setting the author_id to identity::guest()->id Fix for ticket #777.
Diffstat (limited to 'modules/notification')
-rw-r--r--modules/notification/helpers/notification_event.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/notification/helpers/notification_event.php b/modules/notification/helpers/notification_event.php
index 3a369155..e6791071 100644
--- a/modules/notification/helpers/notification_event.php
+++ b/modules/notification/helpers/notification_event.php
@@ -52,6 +52,10 @@ class notification_event_Core {
}
}
+ static function user_deleted($user) {
+ Database::instance()->query("DELETE FROM {subscriptions} where user_id = {$user->id}");
+ }
+
static function comment_created($comment) {
try {
if ($comment->state == "published") {