--- loncom/xml/londefdef.pm 2004/07/12 16:11:30 1.225 +++ loncom/xml/londefdef.pm 2004/07/12 17:19:13 1.226 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Tags Default Definition Module # -# $Id: londefdef.pm,v 1.225 2004/07/12 16:11:30 sakharuk Exp $ +# $Id: londefdef.pm,v 1.226 2004/07/12 17:19:13 sakharuk Exp $ # # # Copyright Michigan State University Board of Trustees @@ -1133,15 +1133,13 @@ sub end_p { if ($target eq 'web') { $currentstring .= $token->[2]; } elsif ($target eq 'tex') { - if ($$tagstack[-1] eq 'p') { - my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1); - if ($align eq 'center') { - $currentstring .= '\end{center}'; - } elsif ($align eq 'right') { - $currentstring .= '}}'; - } elsif ($align eq 'left') { - $currentstring .= '}\hfill}'; - } + my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1); + if ($align eq 'center') { + $currentstring .= '\end{center}'; + } elsif ($align eq 'right') { + $currentstring .= '}}'; + } elsif ($align eq 'left') { + $currentstring .= '}\hfill}'; } } return $currentstring;