diff options
| author | fukachan <fukachan> | 2002-07-15 15:27:13 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-07-15 15:27:13 +0000 |
| commit | 67ca162e475b706fe2c48bd0898b72b4e686e4e6 (patch) | |
| tree | a013ae7a4399ffa230abe03fd1e4dd2ecf232119 /fml/lib/FML/Process/Error.pm | |
| parent | 09aa33f70f3ee62223bab571f4e658ab23cf808b (diff) | |
| download | fml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.tar.gz fml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.tar.bz2 fml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.zip | |
define the following access methods:
config()
pcb()
incoming_message_header()
incoming_message_body()
incoming_message()
article_header()
article_body()
article_message()
modified to use incoming_message_header() incoming_message_body()
incoming_message() article_header() article_body() article_message().
Diffstat (limited to 'fml/lib/FML/Process/Error.pm')
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index 22e1412d..2f86a93d 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.9 2002/06/27 08:25:50 fukachan Exp $ +# $FML: Error.pm,v 1.10 2002/06/30 05:18:46 fukachan Exp $ # package FML::Process::Error; @@ -137,7 +137,7 @@ sub run my $config = $curproc->{ config }; my $found = 0; my $pcb = $curproc->{ pcb }; - my $msg = $curproc->{ incoming_message }->{ message }; + my $msg = $curproc->incoming_message(); my $eval = $config->get_hook( 'error_run_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } |
