--- loncom/homework/structuretags.pm 2001/06/11 16:15:10 1.42 +++ loncom/homework/structuretags.pm 2001/06/26 21:09:08 1.44 @@ -1,6 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # 2/19 Guy +# 6/26/2001 fixed extra web display at end of tags package Apache::structuretags; use strict; @@ -21,6 +22,7 @@ sub start_web { } sub end_web { + return ''; } sub start_tex { @@ -33,6 +35,7 @@ sub start_tex { } sub end_tex { + return ''; } sub start_problem { @@ -368,7 +371,7 @@ sub end_startouttext { if ($target eq 'edit') { $text=&Apache::lonxml::get_all_text("endouttext",$$parser[$#$parser]); - $result.=" + $result.=&Apache::edit::start_table($token)." @@ -387,7 +390,7 @@ sub end_startouttext { sub start_endouttext { my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_; my $result=''; - if ($target eq "edit" ) { $result="
Text Block
Text Block Delete:". &Apache::edit::deletelist($target,$token) ."
\n"; } + if ($target eq "edit" ) { $result="".&Apache::edit::end_table()."\n"; } if ($target eq "modified") { $result=''; } return $result; }