--- loncom/publisher/londiff.pm 2005/05/29 01:46:16 1.17 +++ loncom/publisher/londiff.pm 2006/04/06 22:15:18 1.18 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to show differences between file versions # -# $Id: londiff.pm,v 1.17 2005/05/29 01:46:16 www Exp $ +# $Id: londiff.pm,v 1.18 2006/04/06 22:15:18 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -104,9 +104,7 @@ sub handler { &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; - $r->print('LON-CAPA Construction Diffs'); - - $r->print(&Apache::loncommon::bodytag('Resource Differences')); + $r->print(&Apache::loncommon::start_page('Resource Differences')); $r->print('

'.($env{'form.filetwo'}?'':&mt('Compare versions of')). @@ -192,7 +190,8 @@ sub handler { } else { $r->print('

'.&mt('Binary File').'

'); } - $r->print('
'.&mt('Close This Window').'
'); + $r->print('
'.&mt('Close This Window').'
'); + $r->print(&Apache::loncommon::end_page()); return OK; }