My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 5: it doesn't show orange points for "only WEP" networks, it shows them in red
2 people starred this issue and may be notified of changes. Back to list
Status:  Duplicate
Merged:  issue 1
Owner:  richard....@gmail.com
Closed:  Jan 2010
Cc:  richard....@gmail.com


 
Project Member Reported by richard....@gmail.com, Feb 25, 2009
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 :-)
Feb 25, 2009
Project Member #1 richard....@gmail.com
we need to check if this is a dupplicate of issue #1
(https://code.google.com/p/kisgearth/issues/detail?id=1)
Status: Accepted
Feb 26, 2009
#2 stra...@gmail.com
I think it's the same bug, fixed in two different ways. Is there a new official
release with the fix in it?
Jan 29, 2010
Project Member #3 richard....@gmail.com
(No comment was entered for this change.)
Status: Duplicate
Owner: richard.sammet
Mergedinto: 1

Powered by Google Project Hosting