On Fri, Apr 15, 2011 at 3:02 PM, Daniel Ruan <[email protected]> wrote:
> Hi Dave,
>
> I thought the tagsIndex template is used to display entries by a given tag (
> http://rollerweblogger.org/roller/entry/roller_themes_part_2). But the line
> in PageServlet reads:
>
> } else if ("tags".equals(pageRequest.getContext()) &&
> pageRequest.getTags() == null) {
Yep, that's a bug in Roller 4, the current code base has this:
} else if ("tags".equals(pageRequest.getContext()) &&
pageRequest.getTags() != null) {
It was quietly fixed in rev 755000 (http://s.apache.org/wA)
- Dave