diff options
| author | fukachan <fukachan> | 2001-10-14 00:32:29 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-10-14 00:32:29 +0000 |
| commit | 00f63a4085087e4828ebde340b49eb8dfe2df20e (patch) | |
| tree | 1012ac40d0992fde5f7f8e531388bc491619296d /fml/lib/FML/Command/User/help.pm | |
| parent | 576289aae815fa4dab2e62d9ecdf303455f476f5 (diff) | |
| download | fml8-00f63a4085087e4828ebde340b49eb8dfe2df20e.tar.gz fml8-00f63a4085087e4828ebde340b49eb8dfe2df20e.tar.bz2 fml8-00f63a4085087e4828ebde340b49eb8dfe2df20e.zip | |
$optargs -> $command_args
Diffstat (limited to 'fml/lib/FML/Command/User/help.pm')
| -rw-r--r-- | fml/lib/FML/Command/User/help.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Command/User/help.pm b/fml/lib/FML/Command/User/help.pm index 99088a60..d66885e2 100644 --- a/fml/lib/FML/Command/User/help.pm +++ b/fml/lib/FML/Command/User/help.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: help.pm,v 1.3 2001/10/12 00:00:57 fukachan Exp $ +# $FML: help.pm,v 1.4 2001/10/13 12:17:52 fukachan Exp $ # package FML::Command::User::help; @@ -31,18 +31,18 @@ See C<FML::Command> for more details. =head1 METHODS -=head2 C<process($curproc, $optargs)> +=head2 C<process($curproc, $command_args)> =cut sub process { - my ($self, $curproc, $optargs) = @_; + my ($self, $curproc, $command_args) = @_; my $config = $curproc->{ config }; - $optargs->{ _file_to_send } = $config->{ "help_file" }; - $self->send_file($curproc, $optargs); + $command_args->{ _file_to_send } = $config->{ "help_file" }; + $self->send_file($curproc, $command_args); } |
