--- loncom/interface/longroupchat.pm 2006/05/18 17:58:14 1.7 +++ loncom/interface/longroupchat.pm 2006/06/26 22:21:37 1.9 @@ -1,6 +1,8 @@ # The LearningOnline Network # "Group Chat Frame" Personal Information # +# $Id: longroupchat.pm,v 1.9 2006/06/26 22:21:37 albertel Exp $ +# # Copyright Michigan State University Board of Trustees # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). @@ -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) = @_; @@ -45,7 +50,7 @@ sub handler { my %group_info = &Apache::longroup::get_group_settings($curr_groups{$group}); $grouptitle = &mt('Group Chat:').' '. - &Apache::lonnet::unescape($group_info{description}); + &unescape($group_info{description}); } } @@ -68,7 +73,7 @@ $start_page $end_page END - + return OK; } 1;