add has_xml et al.
[spider.git] / cmd / unset / newprotocol.pl
1 #
2 # unset the new protocol flag
3 #
4 # Copyright (c) 1998 - Dirk Koopman
5 #
6 # $Id$
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->wantnp(0);
21                 $user->put;
22                 push @out, $self->msg('unset', 'New Protocol', $call);
23         } else {
24                 push @out, $self->msg('e3', "Unset New Protocol", $call);
25         }
26 }
27 return (1, @out);