diff options
| author | tmu <tmu> | 2004-06-30 15:03:19 +0000 |
|---|---|---|
| committer | tmu <tmu> | 2004-06-30 15:03:19 +0000 |
| commit | 9ae4e5605af992deb9f28f5cebb206af2d0e1006 (patch) | |
| tree | 0e9124c1359dc1931b3dd2a0c5f47ef1e6f62e50 /fml/lib/FML/Process/Distribute.pm | |
| parent | b82e1fde5ecb5a7cf008ebcedc5268ac1a7aac72 (diff) | |
| download | fml8-9ae4e5605af992deb9f28f5cebb206af2d0e1006.tar.gz fml8-9ae4e5605af992deb9f28f5cebb206af2d0e1006.tar.bz2 fml8-9ae4e5605af992deb9f28f5cebb206af2d0e1006.zip | |
reduce error message
Diffstat (limited to 'fml/lib/FML/Process/Distribute.pm')
| -rw-r--r-- | fml/lib/FML/Process/Distribute.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Distribute.pm b/fml/lib/FML/Process/Distribute.pm index 898d705b..9517fa0d 100644 --- a/fml/lib/FML/Process/Distribute.pm +++ b/fml/lib/FML/Process/Distribute.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Distribute.pm,v 1.151 2004/06/27 02:39:32 fukachan Exp $ +# $FML: Distribute.pm,v 1.152 2004/06/29 07:57:38 fukachan Exp $ # package FML::Process::Distribute; @@ -76,8 +76,8 @@ sub prepare my ($curproc, $args) = @_; my $config = $curproc->config(); - my $eval = $config->get_hook( 'distribute_prepare_start_hook' ); - $eval .= $config->get_hook( 'article_post_prepare_start_hook' ); + my $eval = $config->get_hook( 'distribute_prepare_start_hook' ) || ''; + $eval .= $config->get_hook( 'article_post_prepare_start_hook' ) || ''; if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); |
