From: Mikael Nordfeldth Date: Mon, 23 Jun 2014 12:23:44 +0000 (+0200) Subject: Event cache clearing bug X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=af02f445e44ab530a0548c76f20114b7e593b854;p=quix0rs-gnu-social.git Event cache clearing bug --- diff --git a/plugins/Event/classes/RSVP.php b/plugins/Event/classes/RSVP.php index 7ca29b280e..31ccf439ef 100644 --- a/plugins/Event/classes/RSVP.php +++ b/plugins/Event/classes/RSVP.php @@ -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); } }