--- loncom/homework/inputtags.pm 2006/03/09 00:41:24 1.188 +++ loncom/homework/inputtags.pm 2006/03/09 00:43:05 1.189 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # input definitons # -# $Id: inputtags.pm,v 1.188 2006/03/09 00:41:24 albertel Exp $ +# $Id: inputtags.pm,v 1.189 2006/03/09 00:43:05 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -355,6 +355,12 @@ sub start_hiddenline { $result=&Apache::edit::tag_start($target,$token); $result.=&Apache::edit::end_table; } + + if ( ($target eq 'web' || $target eq 'tex') + && $Apache::lonhomework::type eq 'exam' + && &needs_exam_box($tagstack)) { + $result.=&exam_box($target); + } return $result; }