X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Fpc90.pl;fp=cmd%2Fset%2Fpc90.pl;h=0000000000000000000000000000000000000000;hb=148f4d43135748ba5aff985c50720b370ca1e336;hp=cf90651614633013f49730d28dce55f5986680ef;hpb=d0dd6927b76507d8c2b1c6d32d6fdd34515e4a82;p=spider.git diff --git a/cmd/set/pc90.pl b/cmd/set/pc90.pl deleted file mode 100644 index cf906516..00000000 --- a/cmd/set/pc90.pl +++ /dev/null @@ -1,27 +0,0 @@ -# -# set the pc90 flag -# -# Copyright (c) 1998 - Dirk Koopman -# -# $Id$ -# - -my ($self, $line) = @_; -my @args = split /\s+/, $line; -my $call; -my @out; - -@args = $self->call if (!@args || $self->priv < 9); - -foreach $call (@args) { - $call = uc $call; - my $user = DXUser->get_current($call); - if ($user) { - $user->wantpc90(1); - $user->put; - push @out, $self->msg('set', 'PC90', $call); - } else { - push @out, $self->msg('e3', "Set PC90", $call); - } -} -return (1, @out);