On Dec 19, 2007 3:15 PM, John Langan <[EMAIL PROTECTED]> wrote: > I edited Weblog.vm of the front page to be > ## 1) SITE-WIDE entries (the default) > ##set($pager = $site.getWeblogEntriesPager($since, $maxResults)) > ## 2) PLANET-entries > # set($pager = $planet.getAggregationPager($since, $maxResults)) > > All I get displayed on the front page under the Recent Entries tab is > # set($pager = > [EMAIL PROTECTED]) > > What should I see there? Any ideas on what has gone wrong?
Remove that space between # and the word "set". The line should look like this: #set($pager = $planet.getAggregationPager($since, $maxResults)) - Dave
