spider/cmd/load/aliases.pl
djk a8b7d0b77f added swop file
extended badmsg file to allow regexes on various fields
detail changes to all load/* commands
1999-11-24 15:27:38 +00:00

9 lines
209 B
Perl

#
# load the Command Aliases file after changing it
#
my $self = shift;
return (1, $self->msg('e5')) if $self->priv < 9;
my @out = CmdAlias::load($self);
@out = ($self->msg('ok')) if !@out;
return (1, @out);