Change DXUser->get* to DXUser::get*
[spider.git] / cmd / unset / dxcq.pl
1 #
2 # unset the dxdxcq flag
3 #
4 # Copyright (c) 2000 - Dirk Koopman
5 #
6 #
7 #
8
9 my ($self, $line) = @_;
10 my @args = split /\s+/, $line;
11 my $call;
12 my @out;
13
14 @args = $self->call if (!@args || $self->priv < 9);
15
16 foreach $call (@args) {
17         $call = uc $call;
18         my $user = DXUser::get_current($call);
19         if ($user) {
20                 $user->wantdxcq(0);
21                 $user->put;
22                 push @out, $self->msg('dxcqu', $call);
23         } else {
24                 push @out, $self->msg('e3', "Unset DX CQ", $call);
25         }
26 }
27 return (1, @out);