--- loncom/interface/loncommunicate.pm 2006/03/19 22:22:49 1.30 +++ loncom/interface/loncommunicate.pm 2006/04/13 17:57:17 1.32 @@ -1,7 +1,7 @@ # The LearningOnline Network # Communicate # -# $Id: loncommunicate.pm,v 1.30 2006/03/19 22:22:49 albertel Exp $ +# $Id: loncommunicate.pm,v 1.32 2006/04/13 17:57:17 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -31,7 +31,7 @@ package Apache::loncommunicate; use strict; use Apache::Constants qw(:common); -use Apache::lonmsg(); +use Apache::lonmsgdisplay(); use Apache::loncommon; use Apache::lonlocal; use Apache::lonnet; @@ -47,7 +47,8 @@ sub menu { 'unr' => 'User Notes, Records of Face-to-Face Discussions, and Critical Messages', -'cbs' => 'Configure blocking of student communication during exams' +'cbs' => 'Configure Blocking of Student Communication during Exams', +'blog' => 'Edit to my Blogs' ); my %help=(); @@ -65,6 +66,9 @@ sub menu { $lt{'smu'} + + $lt{'blog'} + END if (($env{'request.course.id'}) && ( @@ -106,9 +110,9 @@ sub handler { faq=>12,bug=>'Communication Tools',}); # ---------------------------------------------------------------------- Header - &Apache::lonmsg::header($r); + &Apache::lonmsgdisplay::header($r); &menu($r); - &Apache::lonmsg::disall($r,'new'); + &Apache::lonmsgdisplay::disall($r,'new'); $r->print(&Apache::loncommon::end_page()); return OK; }