]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Correct list of parameters for Happening::saveNew()
authorEvan Prodromou <evan@status.net>
Sat, 2 Jul 2011 03:04:44 +0000 (23:04 -0400)
committerEvan Prodromou <evan@status.net>
Sat, 2 Jul 2011 03:04:44 +0000 (23:04 -0400)
plugins/Event/EventPlugin.php

index 253e9f86aa07463388a572b16f5aeda14c0743ee..a341c80732fc38919c8407109e7c93e36c998b3f 100644 (file)
@@ -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: