X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Fisolate.pl;h=893c204ca0f4397ad8609be5f956acc89795973c;hb=ab811a0c902225075a9bd69749f65594079433a9;hp=89d8257b0fe5f71d3e1afa692eaaca3d7f8bed2d;hpb=412fb1b9e4070d7791f4e986b55bbc0c06f612ea;p=spider.git diff --git a/cmd/set/isolate.pl b/cmd/set/isolate.pl index 89d8257b..893c204c 100644 --- a/cmd/set/isolate.pl +++ b/cmd/set/isolate.pl @@ -5,7 +5,7 @@ # # Copyright (c) 1998 - Dirk Koopman # -# $Id$ +# # my ($self, $line) = @_; @@ -19,11 +19,11 @@ return (1, $self->msg('e5')) if $self->priv < 9; foreach $call (@args) { $call = uc $call; - my $chan = DXChannel->get($call); + my $chan = DXChannel::get($call); if ($chan) { push @out, $self->msg('nodee1', $call); } else { - $user = DXUser->get($call); + $user = DXUser::get($call); $create = !$user; $user = DXUser->new($call) if $create; my $f;