Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Andy] Possible back bug...

Quote Reply
Re: [Andy] Possible back bug... In reply to
Wow, I'm surprised no one has seen that before. =) Can you edit admin/Links/Build.pm and change line 651:

Code:
if ($nh > 1) {
$display{prev} = $url . "/more" . ($nh-1) . "$CFG->{build_extension}";
}


to:

Code:
if ($nh == 2) {
$display{prev} = $url . "/" . $CFG->{build_index};
}
elsif ($nh > 2) {
$display{prev} = $url . "/more" . ($nh-1) . "$CFG->{build_extension}";
}


and I think that should work.

Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread Possible back bug... Andy 4267 Nov 11, 2002, 2:45 AM
Thread Re: [Andy] Possible back bug...
Alex 4106 Nov 14, 2002, 3:54 PM
Thread Re: [Alex] Possible back bug...
Andy 4148 Nov 15, 2002, 1:28 AM
Thread Re: [Andy] Possible back bug...
yogi 4142 Nov 15, 2002, 1:30 AM
Thread Re: [yogi] Possible back bug...
Andy 4139 Nov 15, 2002, 1:34 AM
Thread Re: [Andy] Possible back bug...
yogi 4091 Nov 15, 2002, 1:37 AM
Thread Re: [yogi] Possible back bug...
Andy 4107 Nov 15, 2002, 1:40 AM
Post Re: [Andy] Possible back bug...
yogi 4096 Nov 15, 2002, 1:44 AM