Merge branch 'noticetitle' into 0.9.x

This commit is contained in:
Evan Prodromou
2010-08-14 12:03:25 -07:00
7 changed files with 518 additions and 60 deletions

View File

@@ -121,16 +121,19 @@ class Notice extends Memcached_DataObject
$deleted->insert();
}
// Clear related records
if (Event::handle('NoticeDeleteRelated', array($this))) {
$this->clearReplies();
$this->clearRepeats();
$this->clearFaves();
$this->clearTags();
$this->clearGroupInboxes();
// Clear related records
// NOTE: we don't clear inboxes
// NOTE: we don't clear queue items
$this->clearReplies();
$this->clearRepeats();
$this->clearFaves();
$this->clearTags();
$this->clearGroupInboxes();
// NOTE: we don't clear inboxes
// NOTE: we don't clear queue items
}
$result = parent::delete();