--- loncom/interface/resetpw.pm 2007/03/07 15:59:31 1.5 +++ loncom/interface/resetpw.pm 2007/03/08 01:58:45 1.6 @@ -63,7 +63,7 @@ sub handler { if ($token) { $output = &reset_passwd($r,$token,$contact_name,$contact_email); } elsif ($uname && $udom) { - my $domdesc = $Apache::lonnet::domaindescription{$udom}; + my $domdesc = &Apache::lonnet::domain($udom,'description'); my $authtype = &Apache::lonnet::queryauthenticate($uname,$udom); if ($authtype =~ /^internal/) { my $useremail = $env{'form.useremail'}; @@ -245,7 +245,7 @@ sub reset_passwd { my $delete = &Apache::lonnet::tmpdel($token); my $now = localtime(time); my $domdesc = - $Apache::lonnet::domaindescription{$data{'domain'}}; + &Apache::lonnet::domain($data{'domain'},'description'); my $mailmsg = &mt('The password for your LON-CAPA account in the [_1] domain was changed [_2] from IP address: [_3]. If you did not perform this change or authorize it, please contact the [_4] ([_5]).',$domdesc,$now,$ENV{'REMOTE_ADDR'},$contact_name,$contact_email)."\n"; my $result = &send_mail($domdesc,$data{'email'},$mailmsg, $contact_name,$contact_email);