diff options
| author | fukachan <fukachan> | 2001-11-04 03:36:55 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-11-04 03:36:55 +0000 |
| commit | 89d34199bf1756f7c9fcce0732b7385d2e32ebee (patch) | |
| tree | f1d92b4fef34a28c33658cce7903a6d2817f0bdb /fml/lib/FML/Process | |
| parent | 1cfdd15e4fe93afac1fe38e16d33e475d790778c (diff) | |
| download | fml8-89d34199bf1756f7c9fcce0732b7385d2e32ebee.tar.gz fml8-89d34199bf1756f7c9fcce0732b7385d2e32ebee.tar.bz2 fml8-89d34199bf1756f7c9fcce0732b7385d2e32ebee.zip | |
use command_line_argv() for $args->{ARGV}
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/CGI.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/CGI.pm b/fml/lib/FML/Process/CGI.pm index 2ccfc9cd..47f10906 100644 --- a/fml/lib/FML/Process/CGI.pm +++ b/fml/lib/FML/Process/CGI.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: CGI.pm,v 1.14 2001/06/10 11:24:12 fukachan Exp $ +# $FML: CGI.pm,v 1.15 2001/08/22 03:07:59 fukachan Exp $ # package FML::Process::CGI; @@ -142,7 +142,7 @@ sub _makefml my $method = param('method'); my $ml_name = param('ml_name'); my $address = param('address') || ''; - my $argv = $args->{ ARGV } || ''; + my $argv = $curproc->command_line_argv(); my @options = (); # arguments to pass off to each method |
