--- loncom/publisher/lonpublisher.pm 2005/03/10 03:50:49 1.188 +++ loncom/publisher/lonpublisher.pm 2005/03/15 16:09:20 1.189 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Publication Handler # -# $Id: lonpublisher.pm,v 1.188 2005/03/10 03:50:49 www Exp $ +# $Id: lonpublisher.pm,v 1.189 2005/03/15 16:09:20 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2012,14 +2012,17 @@ ENDDIFF unless ($ENV{'form.phase'} eq 'two') { # ---------------------------------------------------------- Parse for problems - my ($warningcount,$errorcount)=&checkonthis($r,$thisfn); - unless ($errorcount) { + my ($warningcount,$errorcount); + if ($thisembstyle eq 'ssi') { + ($warningcount,$errorcount)=&checkonthis($r,$thisfn); + } + unless ($errorcount) { my ($outstring,$error)= &publish($thisfn,$thistarget,$thisembstyle); $r->print('
'.$outstring); } else { - $r->print('

'. - &mt('The document contains errors and cannot be published.'). + $r->print('

'. + &mt('The document contains errors and cannot be published.'). '

'); } } else {