From: Evan Prodromou Date: Sat, 2 Jul 2011 03:04:44 +0000 (-0400) Subject: Correct list of parameters for Happening::saveNew() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a0ed80a5d88487b33ce12b439aaa445293b56ffc;p=quix0rs-gnu-social.git Correct list of parameters for Happening::saveNew() --- diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index 253e9f86aa..a341c80732 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -181,12 +181,13 @@ class EventPlugin extends MicroappPlugin switch ($activity->verb) { case ActivityVerb::POST: $notice = Happening::saveNew($actor, - $start_time, - $end_time, - $happeningObj->title, - null, - $happeningObj->summary, - $options); + $start_time, + $end_time, + $happeningObj->title, + null, + $happeningObj->summary, + null, + $options); break; case RSVP::POSITIVE: case RSVP::NEGATIVE: