--- loncom/publisher/lonpublisher.pm 2007/01/10 20:23:21 1.216 +++ loncom/publisher/lonpublisher.pm 2007/01/19 06:10:09 1.217 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Publication Handler # -# $Id: lonpublisher.pm,v 1.216 2007/01/10 20:23:21 albertel Exp $ +# $Id: lonpublisher.pm,v 1.217 2007/01/19 06:10:09 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -507,18 +507,13 @@ sub get_subscribed_hosts { closedir(DIR); my $sh; if ( $sh=Apache::File->new("$target.subscription") ) { - &Apache::lonnet::logthis("opened $target.subscription"); while (my $subline=<$sh>) { if ($subline =~ /^($match_lonid):/) { if ($1 ne $Apache::lonnet::perlvar{'lonHostID'}) { push(@subscribed,$1); } - } else { - &Apache::lonnet::logthis("No Match for $subline"); } } - } else { - &Apache::lonnet::logthis("Unable to open $target.subscription"); } return @subscribed; }