Prepare for git repository
[spider.git] / perl / DXCron.pm
index 870c395e217ea156269ef668bc33c3c3a4c71e53..1d3dcc6d00b5d3bc1a5aa271f6977f8da7ed1a7d 100644 (file)
@@ -168,7 +168,7 @@ sub process
 sub connected
 {
        my $call = uc shift;
-       return DXChannel->get($call);
+       return DXChannel::get($call);
 }
 
 # is it remotely connected anywhere (with exact callsign)?
@@ -218,7 +218,7 @@ sub presentish_on
 sub last_connect
 {
        my $call = uc shift;
-       return $main::systime if DXChannel->get($call);
+       return $main::systime if DXChannel::get($call);
        my $user = DXUser->get($call);
        return $user ? $user->lastin : 0;
 }
@@ -280,13 +280,13 @@ sub rcmd
        return  unless $noderef && $noderef->version;
 
        # send it 
-       DXProt::addrcmd($DXProt::me, $call, $line);
+       DXProt::addrcmd($main::me, $call, $line);
 }
 
 sub run_cmd
 {
        my $line = shift;
-       my @in = DXCommandmode::run_cmd($DXProt::me, $line);
+       my @in = DXCommandmode::run_cmd($main::me, $line);
        dbg("cmd run: $line") if isdbg('cron');
        for (@in) {
                s/\s*$//og;