From 25d833bdd1daedd513f038da4d6dc72b499bd9e4 Mon Sep 17 00:00:00 2001 From: fukachan Date: Fri, 2 Jan 2004 02:11:25 +0000 Subject: $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(); --- fml/lib/FML/Process/HTMLify.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'fml/lib/FML/Process/HTMLify.pm') 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' ); -- cgit v1.2.1