minor fix
authorjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Thu, 19 Nov 2015 11:04:22 +0000 (16:34 +0530)
committerjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Thu, 19 Nov 2015 11:04:22 +0000 (16:34 +0530)
CRM/Event/BAO/Event.php

index d499e45c748f17870284fc0f9ed15490d665f503..cd7c33288e0ac714811da06d1e593f0fa9f85691 100644 (file)
@@ -381,10 +381,6 @@ WHERE      civicrm_event.is_active = 1 AND
     }
     // Get the event summary display preferences
     $show_max_events = Civi::settings()->get('show_events');
-    // default to 10 if no option is set
-    if (is_null($show_max_events)) {
-      $show_max_events = 10;
-    }
     // show all events if show_events is set to a negative value
     if ($show_max_events >= 0) {
       $event_summary_limit = "LIMIT      0, $show_max_events";