diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-10-30 15:40:52 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-10-30 15:40:52 -0700 |
commit | 41171c75bd937e08a36e846ed9d0af9ace84fe8f (patch) | |
tree | 252922d8731db4eec8d0c25d253ca12927c3a13f /modules/gallery/helpers | |
parent | 47c75aa279f1ec140bdd2b5e4c975bee3c0c2055 (diff) | |
parent | 90465012d18b9d795d315e2fdf0461b39716b0a5 (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/gallery_event.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php index 87dee356..7e0382ec 100644 --- a/modules/gallery/helpers/gallery_event.php +++ b/modules/gallery/helpers/gallery_event.php @@ -28,6 +28,13 @@ class gallery_event_Core { locales::set_request_locale(); } + static function user_deleted($user) { + $admin = identity::admin_user(); + $db = Database::instance(); + $db->query("UPDATE {tasks} SET owner_id = {$admin->id} where owner_id = {$user->id}"); + $db->query("UPDATE {items} SET owner_id = {$admin->id} where owner_id = {$user->id}"); + } + static function group_created($group) { access::add_group($group); } |