diff options
| author | fukachan <fukachan> | 2006-02-04 07:58:43 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2006-02-04 07:58:43 +0000 |
| commit | 08fb225596126fe602e0fef1ef245942e94b23c4 (patch) | |
| tree | 8321ccdf167da968add19a9b1e723d604d07897f /fml/lib/FML/Command/Admin | |
| parent | 3d3c94b6b8744c8622a0e0f0b579d95c8ccde836 (diff) | |
| download | fml8-08fb225596126fe602e0fef1ef245942e94b23c4.tar.gz fml8-08fb225596126fe602e0fef1ef245942e94b23c4.tar.bz2 fml8-08fb225596126fe602e0fef1ef245942e94b23c4.zip | |
use $command_args->{ ml_name } and $command_args->{ ml_domain };
Diffstat (limited to 'fml/lib/FML/Command/Admin')
| -rw-r--r-- | fml/lib/FML/Command/Admin/rmml.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Command/Admin/rmml.pm b/fml/lib/FML/Command/Admin/rmml.pm index 83f998fe..48c06f1f 100644 --- a/fml/lib/FML/Command/Admin/rmml.pm +++ b/fml/lib/FML/Command/Admin/rmml.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: rmml.pm,v 1.25 2004/01/02 14:45:05 fukachan Exp $ +# $FML: rmml.pm,v 1.26 2004/07/23 13:16:36 fukachan Exp $ # package FML::Command::Admin::rmml; @@ -68,8 +68,8 @@ sub process my ($self, $curproc, $command_args) = @_; my $options = $curproc->command_line_options(); my $config = $curproc->config(); - my $ml_name = $curproc->ml_name(); - my $ml_domain = $curproc->ml_domain(); + my $ml_name = $command_args->{ ml_name }; + my $ml_domain = $command_args->{ ml_domain }; my $ml_home_prefix = $curproc->ml_home_prefix($ml_domain); my $ml_home_dir = $curproc->ml_home_dir($ml_name, $ml_domain); my $params = { |
