Norberto Bensa wrote:
>
> Yup. And talking about Gentoo, shouldn't this snippet from
> 14_all_cgi-fixes.patch be removed?? :
>
Hmm - considering that this patch introduced the stuff that broke my
graph - I'm guessing yes. I don't know what its intended purpose is.
However, getting rid of that one patch is likely to fix this bug.
Vanilla 3.8 seems to contain the working code (as far as the graph goes).
I CC'ed the gentoo maintainer - maybe this patch should be removed
(copied below without quoting). However, perhaps this patch is needed
for some other purpose...
14_all_cgi-fixes.patch:
@@ -546,9 +550,9 @@
}
}
$DATA{$hk}=join("_",
- join(",",@{$lst{spam}}),
- join(",",@{$lst{nonspam}}),
- join(",",@{$lst{title}}),
+ join(",",@{$lst{spam}} || [0]),
+ join(",",@{$lst{nonspam}} || [0]),
+ join(",",@{$lst{title}} || [0]),
);
}