Gossamer Forum
Home : Products : Links 2.0 : Discussions :

all subcategories are displayed using staggered building

Quote Reply
all subcategories are displayed using staggered building
Problem with Links 2.0:
I need to use the staggered building of pages (either staggered or automatic staggered) on my remote server. Then all subcategories are displayed on a category page but not only the subcategories of the next depth. If I use the building of all pages (build all) then everything works fine. Does anyone have the same experience?
Quote Reply
Re: all subcategories are displayed using staggered building In reply to
Hello to everybody,

I've done some debugging yesterday and I've found the bug. It is a very small animal called Dollar character missing in nph-build.cgi. You need to replace in the sub build_single_category the line:

elsif ($name =~ m,^$category/([^/]+),) {

by:

elsif ($name =~ m,^$category/[^/]+$,) {

The brackets are not required. So I've deleted them.

Best regards,

Rainer
Quote Reply
Re: all subcategories are displayed using staggered building In reply to
Thanks! I've fixed up the source distribution.

Cheers,

Alex