New issue 5 by richard.sammet: it doesn't show orange points for "only WEP"
networks, it shows them in red
http://code.google.com/p/kisgearth/issues/detail?id=5
Added on behalf of "Ruggero Strabla"
--
I don't know perl, but I think I found where is the problem (around line
940):
foreach $E (@{$N->{'encryption'}}) {
push(@{$networks[$net_count]->nencryption}, $E);
}
When a network is only WEP, the foreach doesn't work because
$N->{'encryption'} is not an array, so I added this code after the foreach
to get things working:
if(($N->{'encryption'}) eq WEP) {
push(@{$networks[$net_count]->nencryption}, WEP);
}
And finally I get the orange cyrcles in my map :-)
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 5 by richard.sammet: it doesn't show orange points
for "only WEP" networks, it shows them in red
http://code.google.com/p/kisgearth/issues/detail?id=5
we need to check if this is a dupplicate of issue #1
(http://code.google.com/p/kisgearth/issues/detail?id=1)
I think it's the same bug, fixed in two different ways. Is there a new
official
release with the fix in it?
Comment #3 on issue 5 by richard.sammet: it doesn't show orange points
for "only WEP" networks, it shows them in red
http://code.google.com/p/kisgearth/issues/detail?id=5
(No comment was entered for this change.)