Gossamer Forum
Home : Products : Gossamer Links : Discussions :

build_new_gb bug?

Quote Reply
build_new_gb bug?
If I - in 2.05 - set build_new_gb to No, I get
ARRAY(0x856a538)
and no links on my What's New page.

A bug?

John

Quote Reply
Re: build_new_gb bug? In reply to
Hi,

Is this with spanning on or off? i.e. do you see the page that lists the dates ok?

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: build_new_gb bug? In reply to
Hmmm. It happens with span off only. If span on, everything works fine.

Cheers,
John

Quote Reply
Re: build_new_gb bug? In reply to
Hi,

This is indeed a bug. Edit admin/Links/Build.pm, sub build_new, line 136 and replace:

$output .= $grouped_output->{$date}->{'none'};

with:

$output .= join ("", map { Links::SiteHTML::display('link', $_) } @{$grouped_output->{$date}->{'none'}});

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: build_new_gb bug? In reply to
Thanks Alex,

Just to confirm that this fix indeed fixes the problem.

John