X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=blobdiff_plain;f=cmd%2Fshow%2Fstation.pl;h=55976a6917f709187e7dfd0e15ea37e7b8bcb7fd;hp=a5ffe2adc01f9e8f651da739982a10134dab5b46;hb=ab811a0c902225075a9bd69749f65594079433a9;hpb=8182fba8e33d568b834621cc35c1ca7c74fb5487 diff --git a/cmd/show/station.pl b/cmd/show/station.pl index a5ffe2ad..55976a69 100644 --- a/cmd/show/station.pl +++ b/cmd/show/station.pl @@ -26,7 +26,7 @@ if (@f <= 2 && uc $f[0] eq 'ALL') { } foreach $call (@calls) { - my $ref = DXUser->get_current($call); + my $ref = DXUser::get_current($call); next if !$ref; my $lat = $ref->lat; my $long = $ref->long; @@ -42,7 +42,7 @@ if (@f <= 2 && uc $f[0] eq 'ALL') { } } else { foreach $call (@f) { - my $ref = DXUser->get_current($call); + my $ref = DXUser::get_current($call); if ($ref) { my $name = $ref->name; my $qth = $ref->qth;