lower 60m limit

This commit is contained in:
Dirk Koopman 2008-05-06 17:09:58 +01:00
parent 49c63abb49
commit ad8639433d
4 changed files with 7 additions and 5 deletions

View File

@ -3,6 +3,8 @@
DXUser::get*. This will break any third party addons or commands use these
commands.
2. Change version to 1.55
3. Drop the lower limit of 60m to 5100 after Dave G7RAU pointed out usage.
(see http://www.bandplans.com/index.php?band=60)
22Apr08=======================================================================
1. Added two Xmas Is calls.
15Apr08=======================================================================

View File

@ -36,7 +36,7 @@
ssb => [ 3601, 4000 ]
}, 'Bands'),
'60m' => bless( { band => [ 5258, 5410],
'60m' => bless( { band => [ 5100, 5410],
ssb => [5300, 5410],
}, 'Bands' ),

View File

@ -232,7 +232,7 @@ return (1, $self->msg('e5')) if $self->priv < 9;
foreach $call (@args) {
$call = uc $call;
if ($ref = DXUser->get_current($call)) {
if ($ref = DXUser::get_current($call)) {
$ref->passwd($pass);
$ref->put();
push @out, $self->msg("password", $call);
@ -303,11 +303,11 @@ return (1, @out)
<p><li>It is important that you remember when you have tie
hashes using MLDBM et al. If you do a
<tt>DXUser->get($call)</tt> you will get a different (older)
<tt>DXUser::get($call)</tt> you will get a different (older)
thing than the one in <tt>$self->user</tt>. This is almost
certainly NOT what you want if want to modify a user that is
currently connected. Either use <tt>$self->user</tt> or, if
you want another user, use <tt>DXUser->get_current($call)</tt>
you want another user, use <tt>DXUser::get_current($call)</tt>
<p><li>If you want to debug something, start the cluster.pl up thus:-
<pre>

View File

@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
$version = '1.55';
$subversion = '0';
$build = '2';
$build = '3';
1;