From: Evan Prodromou Date: Thu, 10 Mar 2011 16:14:09 +0000 (-0600) Subject: reformatting on RSVP.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=39b308bf90e3da67cbe0e46f4db3b025704c0882;p=quix0rs-gnu-social.git reformatting on RSVP.php --- 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();