summaryrefslogtreecommitdiff
path: root/modules/comment/helpers/comment_event.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-10-30 15:40:52 -0700
committerBharat Mediratta <bharat@menalto.com>2009-10-30 15:40:52 -0700
commit41171c75bd937e08a36e846ed9d0af9ace84fe8f (patch)
tree252922d8731db4eec8d0c25d253ca12927c3a13f /modules/comment/helpers/comment_event.php
parent47c75aa279f1ec140bdd2b5e4c975bee3c0c2055 (diff)
parent90465012d18b9d795d315e2fdf0461b39716b0a5 (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/comment/helpers/comment_event.php')
-rw-r--r--modules/comment/helpers/comment_event.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/comment/helpers/comment_event.php b/modules/comment/helpers/comment_event.php
index 2199eb7f..f20e1a51 100644
--- a/modules/comment/helpers/comment_event.php
+++ b/modules/comment/helpers/comment_event.php
@@ -22,6 +22,17 @@ class comment_event_Core {
Database::instance()->delete("comments", array("item_id" => $item->id));
}
+ static function user_deleted($user) {
+ $guest = identity::guest();
+ Database::instance()
+ ->query("UPDATE {comments}
+ SET author_id = {$guest->id},
+ guest_email = '{$user->email}',
+ guest_name = '{$user->name}',
+ guest_url = '{$user->url}'
+ WHERE author_id = {$user->id}");
+ }
+
static function admin_menu($menu, $theme) {
$menu->get("content_menu")
->append(Menu::factory("link")