spider/cmd/set/page.pl
djk f155969d60 1. Added RCMD for clx
2. Added WCY processing
3. Added new node types (clx, spider, dxnet, arcluster)
4. Store echo settings
5. Store pagelth settings
6. sort out source of DXVars for callbot.pl
2000-06-12 20:21:51 +00:00

15 lines
271 B
Perl

#
# set the page length for this invocation of the client
#
# Copyright (c) 1998 - Dirk Koopman G1TLH
#
# $Id$
#
my $self = shift;
my $l = shift;
$l = 20 if $l == 0;
$l = 10 if $l < 10;
$self->pagelth($l);
$self->user->pagelth($l);
return (1, $self->msg('pagelth', $l));