wlanap.cgi: remove trailing 0 from channellist.

This commit is contained in:
Arne Fitzenreiter
2015-01-21 14:20:54 +01:00
parent 08215cb5d8
commit 12f74b8f91
2 changed files with 3 additions and 3 deletions

View File

@@ -272,7 +272,7 @@ my @temp;
foreach (@channellist_cmd){
$_ =~ /(.*) \[(\d+)(.*)\]/;
$channel = $2;chomp $channel;
if ( $channel =~ /\d+/ ){push(@temp,$channel);}
if ( $channel =~ /\d+/ ){push(@temp,$channel + 0);}
}
@channellist = @temp;
} else {
@@ -283,7 +283,7 @@ my @temp;
foreach (@channellist_cmd){
$_ =~ /(.*)Channel (\d+)(.*):/;
$channel = $2;chomp $channel;
if ( $channel =~ /\d+/ ){push(@temp,$channel);}
if ( $channel =~ /\d+/ ){push(@temp,$channel + 0);}
}
@channellist = @temp;
}