fixing malformed comment
authorAnthony Talarico <talarico@gaslightmedia.com>
Thu, 15 Jun 2017 12:14:28 +0000 (08:14 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Thu, 15 Jun 2017 12:14:28 +0000 (08:14 -0400)
php error thrown due to a comment that was on a separate line with out the token

models/front/events/list.php

index 5ec124a..ec2d563 100644 (file)
@@ -713,8 +713,7 @@ class GlmMembersFront_events_list extends GlmMembersFront_events_baseAction
                 }
             }
             $eventsByDate = $mainEvents;
-            // If the events are not grouped by day then they need to be
-sorted.
+            // If the events are not grouped by day then they need to be sorted.
         } else if ( $events && !$groupByDay ) {
             usort( $events, function( $event1, $event2 ){
                 if ( $event1['starting_timestamp'] == $event2['starting_timestamp'] ) {