Event cache clearing bug

This commit is contained in:
Mikael Nordfeldth 2014-06-23 14:23:44 +02:00
parent 703443f152
commit af02f445e4
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ class RSVP extends Managed_DataObject
function delete($useWhere=false)
{
self::blow('rsvp:for-event:%s', $event->id);
self::blow('rsvp:for-event:%s', $this->id);
return parent::delete($useWhere);
}
}