diff options
| author | fukachan <fukachan> | 2002-04-28 13:34:15 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-04-28 13:34:15 +0000 |
| commit | a1deb717ee1aa15d13d58fbb30b17536f1b401b8 (patch) | |
| tree | 96e10d8cefd582df39208dfcd16142bf16fb4796 /fml/lib/FML/Process/Distribute.pm | |
| parent | 898e2ca19b8eebaf3d768872997d6ddeaedf5cf6 (diff) | |
| download | fml8-a1deb717ee1aa15d13d58fbb30b17536f1b401b8.tar.gz fml8-a1deb717ee1aa15d13d58fbb30b17536f1b401b8.tar.bz2 fml8-a1deb717ee1aa15d13d58fbb30b17536f1b401b8.zip | |
validate by defined() more
Diffstat (limited to 'fml/lib/FML/Process/Distribute.pm')
| -rw-r--r-- | fml/lib/FML/Process/Distribute.pm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Distribute.pm b/fml/lib/FML/Process/Distribute.pm index 78b77a96..2be6afef 100644 --- a/fml/lib/FML/Process/Distribute.pm +++ b/fml/lib/FML/Process/Distribute.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Distribute.pm,v 1.73 2002/04/18 15:36:30 fukachan Exp $ +# $FML: Distribute.pm,v 1.74 2002/04/23 14:10:33 fukachan Exp $ # package FML::Process::Distribute; @@ -108,8 +108,14 @@ sub verify_request if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } $curproc->verify_sender_credential(); - $curproc->simple_loop_check(); - $curproc->_check_filter($args); + + unless ($curproc->is_refused()) { + $curproc->simple_loop_check(); + } + + unless ($curproc->is_refused()) { + $curproc->_check_filter($args); + } $eval = $config->get_hook( 'distribute_verify_request_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } |
