--- loncom/interface/longroupchat.pm 2006/05/18 17:58:14 1.7 +++ loncom/interface/longroupchat.pm 2009/02/24 18:20:49 1.10 @@ -1,5 +1,7 @@ # The LearningOnline Network -# "Group Chat Frame" Personal Information +# "Group Chat Room Frame" Personal Information +# +# $Id: longroupchat.pm,v 1.10 2009/02/24 18:20:49 hauer Exp $ # # Copyright Michigan State University Board of Trustees # @@ -31,6 +33,9 @@ use Apache::lonnet; use Apache::loncommon(); use Apache::lonlocal; use Apache::longroup(); +use lib '/home/httpd/lib/perl/'; +use LONCAPA; + sub handler { my ($r) = @_; @@ -44,8 +49,8 @@ sub handler { if (%curr_groups) { my %group_info = &Apache::longroup::get_group_settings($curr_groups{$group}); - $grouptitle = &mt('Group Chat:').' '. - &Apache::lonnet::unescape($group_info{description}); + $grouptitle = &mt('Group Chat Room:').' '. + &unescape($group_info{description}); } } @@ -68,7 +73,7 @@ $start_page $end_page END - + return OK; } 1;