diff --git a/plugins/Event/RSVP.php b/plugins/Event/RSVP.php index c61ff3dbf0..dc7166b9ce 100644 --- a/plugins/Event/RSVP.php +++ b/plugins/Event/RSVP.php @@ -177,7 +177,8 @@ class RSVP extends Managed_DataObject $content = sprintf(_('RSVPed %s for an event.'), ($result == RSVP::POSITIVE) ? _('positively') : - ($result == RSVP::NEGATIVE) ? _('negatively') : _('possibly')); + ($result == RSVP::NEGATIVE) ? _('negatively') : + _('possibly')); $rendered = $content; @@ -231,7 +232,9 @@ class RSVP extends Managed_DataObject static function forEvent($event) { - $rsvps = array(RSVP::POSITIVE => array(), RSVP::NEGATIVE => array(), RSVP::POSSIBLE => array()); + $rsvps = array(RSVP::POSITIVE => array(), + RSVP::NEGATIVE => array(), + RSVP::POSSIBLE => array()); $rsvp = new RSVP();