1. made sure that 'en' is the default language on new users.
2. issue error message if shutdown is attempted by a low privileged user.
3. Make sure a privilege is defined for all users (even if it is 0).
+4. Try to fix some more dups (and the time on time).
26Jul00=======================================================================
1. added wantgrid (to control display of grid square info on DX Broadcasts)
2. added lastoper for controlling periodic demands for user info from other
$text = substr($text, 0, $duplth) if length $text > $duplth;
my $dupkey = "$call|$to|$text";
return 1 if exists $dup{$dupkey};
- $dup{$dupkey} = $d * 60; # in seconds (to the nearest minute)
+ $dup{$dupkey} = $d; # in seconds (to the nearest minute)
return 0;
}
# $text = substr($text, 0, $duplth) if length $text > $duplth;
my $dupkey = "$d|$sfi|$k|$a";
return 1 if exists $dup{$dupkey};
- $dup{$dupkey} = $d * 60; # in seconds (to the nearest minute)
+ $dup{$dupkey} = $d; # in seconds (to the nearest minute)
return 0;
}
unpad($text);
my $dupkey = "$freq|$call|$d|$text";
return 1 if exists $dup{$dupkey};
- $dup{$dupkey} = $d * 60; # in seconds (to the nearest minute)
+ $dup{$dupkey} = $d; # in seconds (to the nearest minute)
return 0;
}
# $text = substr($text, 0, $duplth) if length $text > $duplth;
my $dupkey = "$d|$sfi|$k|$a|$r";
return 1 if exists $dup{$dupkey};
- $dup{$dupkey} = $d * 60; # in seconds (to the nearest minute)
+ $dup{$dupkey} = $d; # in seconds (to the nearest minute)
return 0;
}