--- loncom/publisher/lonpublisher.pm 2004/07/07 21:23:31 1.177 +++ loncom/publisher/lonpublisher.pm 2004/09/02 19:34:46 1.178 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Publication Handler # -# $Id: lonpublisher.pm,v 1.177 2004/07/07 21:23:31 albertel Exp $ +# $Id: lonpublisher.pm,v 1.178 2004/09/02 19:34:46 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -472,7 +472,8 @@ sub get_subscribed_hosts { while ($filename=readdir(DIR)) { if ($filename=~/\Q$srcf\E\.(\w+)$/) { my $subhost=$1; - if (($subhost ne 'meta' && $subhost ne 'subscription') && + if (($subhost ne 'meta' && $subhost ne 'subscription' && + $subhost ne 'tmp') && ($subhost ne $Apache::lonnet::perlvar{'lonHostID'})) { push(@subscribed,$subhost); }