--- loncom/interface/lontemplate.pm 2012/05/15 22:52:56 1.45.6.2 +++ loncom/interface/lontemplate.pm 2012/12/18 15:53:07 1.45.6.3 @@ -1,7 +1,7 @@ # The LearningOnline Network # "Template" Functions to generate html output # -# $Id: lontemplate.pm,v 1.45.6.2 2012/05/15 22:52:56 raeburn Exp $ +# $Id: lontemplate.pm,v 1.45.6.3 2012/12/18 15:53:07 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -127,9 +127,9 @@ sub print_end_template { sub print_editbox_template { my ($r,$content,$field) = @_; $r->print('
'); + &HTML::Entities::encode($content,'"&<>'). + '
'."\n"); + &print_saveall_template($r); } sub print_textarea_template { @@ -175,7 +175,7 @@ sub print_template_fields { $r->print("
"); &Apache::lontemplate::print_textarea_template($r, $data{$field}, $field, $default_rich_text); - &Apache::lontemplate::print_saveall_template($r); + &print_saveall_template($r); $r->print("
"); } &Apache::lontemplate::print_end_template($r);