From 39b308bf90e3da67cbe0e46f4db3b025704c0882 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 10 Mar 2011 10:14:09 -0600 Subject: [PATCH] reformatting on RSVP.php --- plugins/Event/RSVP.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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();