X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fannounce.pl;h=350ff0efdddfb6cb2916997289cccd269e2f1075;hb=0a9f4ecdeafc3212539009b96c64baa977555454;hp=89d8719239caaf36ec360f51b652a6b4660b3b33;hpb=099c6b4a10d9f1e7471b0c94273cd992b5814cdc;p=spider.git diff --git a/cmd/show/announce.pl b/cmd/show/announce.pl index 89d87192..350ff0ef 100644 --- a/cmd/show/announce.pl +++ b/cmd/show/announce.pl @@ -7,13 +7,14 @@ # my $self = shift; -return (1, $self->msg('e5')) if $self->priv < 9; +# this appears to be a reasonable thing for users to do (thank you JE1SGH) +# return (1, $self->msg('e5')) if $self->priv < 9; my $cmdline = shift; my @f = split /\s+/, $cmdline; my $f; my @out; -my ($from, $to); +my ($from, $to, $who); $from = 0; while ($f = shift @f) { # next field @@ -26,9 +27,12 @@ while ($f = shift @f) { # next field ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count? next if $to; } + next if $who; + ($who) = $f =~ /^(\w+)/o; } -$to = 20 if !$to; +$to = 20 unless $to; +$from = 0 unless $from; -@out = DXLog::print($from, $to, $main::systime, '^ann'); +@out = DXLog::print($from, $to, $main::systime, 'ann', $who); return (1, @out);