summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-31 14:23:05 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-31 14:23:05 -0700
commit903b5f6f67faaf8d8b25d8efd279f0ebe669f4d2 (patch)
tree8896948042189818a6ab9c1e24397f9804780bd7 /modules/comment
parent80b892915f7286d3cb8daef3ba12c012738cef28 (diff)
Add identity_change handlers to resolve the ownership issues of comments, subscription, items and tasks.
Diffstat (limited to 'modules/comment')
-rw-r--r--modules/comment/helpers/comment_event.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/modules/comment/helpers/comment_event.php b/modules/comment/helpers/comment_event.php
index f20e1a51..ddf72e3c 100644
--- a/modules/comment/helpers/comment_event.php
+++ b/modules/comment/helpers/comment_event.php
@@ -27,12 +27,22 @@ class comment_event_Core {
Database::instance()
->query("UPDATE {comments}
SET author_id = {$guest->id},
- guest_email = '{$user->email}',
- guest_name = '{$user->name}',
- guest_url = '{$user->url}'
+ guest_email = NULL,
+ guest_name = 'guest',
+ guest_url = NULL
WHERE author_id = {$user->id}");
}
+ static function identity_provider_changed($old_provider, $new_provider) {
+ $guest = identity::guest();
+ Database::instance()
+ ->query("UPDATE {comments}
+ SET author_id = {$guest->id},
+ guest_email = NULL,
+ guest_name = 'guest',
+ guest_url = null");
+ }
+
static function admin_menu($menu, $theme) {
$menu->get("content_menu")
->append(Menu::factory("link")