X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Fusstate.pl;h=af3072406eab11634f2ee7e79007fb6d00cb7e68;hb=96f67f30b496aafcb4276f9fe9cf0fa9f572318b;hp=dd55cac266839ab500d31f61911039f060a0203f;hpb=7a1ff7a9a2828f2fb9bcce8662fee706f7d96bfb;p=spider.git diff --git a/cmd/set/usstate.pl b/cmd/set/usstate.pl index dd55cac2..af307240 100644 --- a/cmd/set/usstate.pl +++ b/cmd/set/usstate.pl @@ -3,7 +3,7 @@ # # Copyright (c) 2000 - Dirk Koopman # -# $Id$ +# # my ($self, $line) = @_; @@ -17,9 +17,17 @@ return (1, $self->msg('db3', 'FCC USDB')) unless $USDB::present; foreach $call (@args) { $call = uc $call; - my $user = DXUser->get_current($call); + my $user = DXUser::get_current($call); if ($user) { $user->wantusstate(1); +# if ($user->wantdxitu) { +# push @out, $self->msg('dxituu', $call); +# $user->wantdxitu(0); +# } +# if ($user->wantdxcq) { +# push @out, $self->msg('dxcqu', $call); +# $user->wantdxcq(0); +# } $user->put; push @out, $self->msg('usstates', $call); } else {