X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fstation.pl;h=a79e93a8901572369718f984b370f8b6fb8972cf;hb=78cf2dcb9be8128af7f8dc5ae37540c9c53c6057;hp=b5b0f6c5a77986897fceea50a997c10dcab9483b;hpb=cc75f4ffe229e8ff381828f88a68c89cec818788;p=spider.git diff --git a/cmd/show/station.pl b/cmd/show/station.pl index b5b0f6c5..a79e93a8 100644 --- a/cmd/show/station.pl +++ b/cmd/show/station.pl @@ -11,9 +11,10 @@ my @f = split /\s+/, uc $line; my @out; my $call; my $seek; +push @f, $self->call unless @f; -if (@f == 0) { - return (1, $self->msg('e6')) if ($self->priv < 5); +if (@f == 1 && uc $f[0] eq 'ALL') { + return (1, $self->msg('e6')) if ($self->priv < 6); my @calls = DXUser::get_all_calls(); foreach $call (@calls) { my $ref = DXUser->get_current($call);