summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Distribute.pm
diff options
context:
space:
mode:
authortmu <tmu>2004-06-30 15:03:19 +0000
committertmu <tmu>2004-06-30 15:03:19 +0000
commit9ae4e5605af992deb9f28f5cebb206af2d0e1006 (patch)
tree0e9124c1359dc1931b3dd2a0c5f47ef1e6f62e50 /fml/lib/FML/Process/Distribute.pm
parentb82e1fde5ecb5a7cf008ebcedc5268ac1a7aac72 (diff)
downloadfml8-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.pm6
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();