--- loncom/xml/lonxml.pm 2002/10/28 14:00:18 1.209 +++ loncom/xml/lonxml.pm 2002/11/03 19:16:20 1.210 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.209 2002/10/28 14:00:18 www Exp $ +# $Id: lonxml.pm,v 1.210 2002/11/03 19:16:20 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -841,6 +841,9 @@ sub callsub { if ($token->[0] eq 'S') { $currentstring = $token->[4]; $currentstring.=&Apache::edit::handle_insert(); + } elsif ($token->[0] eq 'E') { + $currentstring = $token->[2]; + $currentstring.=&Apache::edit::handle_insertafter($token->[1]); } else { $currentstring = $token->[2]; }