Change DXUser->get* to DXUser::get*
[spider.git] / cmd / forward / latlong.pl
index e10239890e3675173286cc7928c5faa5b6fd72c2..e9afd71014e6e1913f998cdd802cfe4abeb2e69a 100644 (file)
@@ -5,7 +5,7 @@
 #
 # Copyright (c) 2000 Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 my ($self, $line) = @_;
@@ -29,7 +29,7 @@ use DB_File;
 my ($action, $count, $key, $data);
 for ($action = R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = R_NEXT) {
        if ($data =~ m{(?:lat|long) =>}) {
-               my $u = DXUser->get_current($key);
+               my $u = DXUser::get_current($key);
                if ($u) {
                        my $lat = $u->lat;
                        my $long = $u->long;