Skip to content

Commit

Permalink
Fixes problem where new Upcoming Events - Headlines view didn't follo…
Browse files Browse the repository at this point in the history
…w the limit number of events from the configuration settings. [#797 state:resolved]
  • Loading branch information
dleffler committed Nov 16, 2012
1 parent 6de918a commit 71ca82f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@
{$more_events=0}
{$item_number=0}
{foreach from=$items item=item}
{if (!$__viewconfig.num_events || $item_number < $__viewconfig.num_events) }
{if (!$config.headcount || $item_number < $config.headcount) }
<li>
<a class="link{if $config.usecategories && !empty($item->color)} {$item->color}{/if}"
{if substr($item->location_data,1,8) != 'calevent'}
Expand Down

0 comments on commit 71ca82f

Please sign in to comment.