--- loncom/publisher/lonpublisher.pm 2004/07/07 21:23:31 1.177 +++ loncom/publisher/lonpublisher.pm 2004/10/05 13:41:36 1.179 @@ -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.179 2004/10/05 13:41:36 matthew 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); } @@ -1131,7 +1132,7 @@ END my $colcount=0; foreach (sort keys %keywords) { - $keywordout.=''; + $keywordout.=' />'.$_.''; if ($colcount>10) { $keywordout.="\n"; $colcount=0;