--- loncom/publisher/lonpublisher.pm	2005/03/15 16:09:20	1.189
+++ loncom/publisher/lonpublisher.pm	2005/04/04 23:51:54	1.190
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Publication Handler
 #
-# $Id: lonpublisher.pm,v 1.189 2005/03/15 16:09:20 albertel Exp $
+# $Id: lonpublisher.pm,v 1.190 2005/04/04 23:51:54 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -852,9 +852,11 @@ sub checkonthis {
     my ($r,$source)=@_;
     my $uri=&Apache::lonnet::hreflocation($source);
     $uri=~s/\/$//;
-    my ($errorcount,$warningcount)=split(/:/,
-	       &Apache::lonnet::ssi_body($uri,
-				('return_only_error_and_warning_counts' => 1)));
+    my ($errorcount,$warningcount);
+    my $result=&Apache::lonnet::ssi_body($uri,
+					 ('grade_target'=>'web',
+					  'return_only_error_and_warning_counts' => 1));
+    my ($errorcount,$warningcount)=split(':',$result);
     if (($errorcount) || ($warningcount)) {
         $r->print('<br /><tt>'.$uri.'</tt>: ');
 	if ($errorcount) {
@@ -868,7 +870,7 @@ sub checkonthis {
 		      &mt('warning(s)').'</font>');
 	}
     } else {
-	$r->print('<font color="green">'.&mt('ok').'</font>');
+	#$r->print('<font color="green">'.&mt('ok').'</font>');
     }
     $r->rflush();
     return ($warningcount,$errorcount);