diff options
| author | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
| commit | 25d833bdd1daedd513f038da4d6dc72b499bd9e4 (patch) | |
| tree | 6c46ce19a00f1c3ab1292aeff368033bc37993e4 /fml/lib/FML/Process/HTMLify.pm | |
| parent | 63f8e58437c9515050415f9a619348c478d39c2b (diff) | |
| download | fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.gz fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.bz2 fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.zip | |
$curproc->resolve_ml_specific_variables( $args );
$curproc->load_config_files( $args->{ cf_list } );
=>
$curproc->resolve_ml_specific_variables();
my $cf_list = $curproc->get_config_files_list();
$curproc->load_config_files($cf_list);
$curproc->parse_incoming_message($args);
=>
$curproc->parse_incoming_message();
Diffstat (limited to 'fml/lib/FML/Process/HTMLify.pm')
| -rw-r--r-- | fml/lib/FML/Process/HTMLify.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm index 02599ddf..c7730125 100644 --- a/fml/lib/FML/Process/HTMLify.pm +++ b/fml/lib/FML/Process/HTMLify.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi # All rights reserved. # -# $FML: HTMLify.pm,v 1.29 2003/08/23 07:24:47 fukachan Exp $ +# $FML: HTMLify.pm,v 1.30 2003/08/29 15:34:08 fukachan Exp $ # package FML::Process::HTMLify; @@ -71,8 +71,9 @@ sub prepare my $eval = $config->get_hook( 'fmlhtmlify_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } - $curproc->resolve_ml_specific_variables( $args ); - $curproc->load_config_files( $args->{ cf_list } ); + $curproc->resolve_ml_specific_variables(); + my $cf_list = $curproc->get_config_files_list(); + $curproc->load_config_files($cf_list); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmlhtmlify_prepare_end_hook' ); |
