| 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 |
|
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
Status:
Accepted
Feb 26, 2009
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
(No comment was entered for this change.)
Status:
Duplicate
Owner: richard.sammet Mergedinto: 1 |
||||||||||||