Diff for /loncom/interface/resetpw.pm between versions 1.32 and 1.33

version 1.32, 2013/03/25 16:33:08 version 1.33, 2013/07/19 16:17:07
Line 91  sub handler { Line 91  sub handler {
     my $udom = $env{'form.udom'};      my $udom = $env{'form.udom'};
     my $token = $env{'form.token'};      my $token = $env{'form.token'};
     my $brcrum = [];      my $brcrum = [];
     my $bread_crumbs_component = 'Forgotten Password';  
     if ($token) {      if ($token) {
         push (@{$brcrum},          push (@{$brcrum},
             {href => '/adm/resetpw',              {href => '/adm/resetpw',
              text => 'Update Password'});               text => 'Update Password'});
   
         $bread_crumbs_component = 'Reset Password';   
     } else {      } else {
         push (@{$brcrum},          push (@{$brcrum},
             {href => '/adm/resetpw',              {href => '/adm/resetpw',
Line 108  sub handler { Line 105  sub handler {
                  text => 'Result'});                   text => 'Result'});
         }          }
     }      }
     my $args = {bread_crumbs => $brcrum,      my $args = {bread_crumbs => $brcrum};
                 bread_crumbs_component => $bread_crumbs_component};  
     $r->print(&Apache::loncommon::start_page('Reset password','',$args));      $r->print(&Apache::loncommon::start_page('Reset password','',$args));
     $r->print('<h3>'.&mt('Reset forgotten LON-CAPA password').'</h3>');      $r->print('<h2>'.&mt('Reset forgotten LON-CAPA password').'</h2>');
     my $output;      my $output;
     if ($token) {      if ($token) {
         $output = &reset_passwd($r,$token,$contact_name,$contact_email);          $output = &reset_passwd($r,$token,$contact_name,$contact_email);
Line 328  sub reset_passwd { Line 324  sub reset_passwd {
                     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 $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,                      my $result = &send_mail($domdesc,$data{'email'},$mailmsg,
                                             $contact_name,$contact_email);                                              $contact_name,$contact_email);
                       my $confirm_msg;
                     if ($result eq 'ok') {                      if ($result eq 'ok') {
                         $msg .=                          $confirm_msg =
                             '<p class="LC_success">'                              &Apache::lonhtmlcommon::confirm_success(
                            .&mt('An e-mail confirming setting of the password'                                  &mt('An e-mail confirming setting of the password'
                                .' for your LON-CAPA account has been sent to [_1].'                                     .' for your LON-CAPA account has been sent to [_1].'
                                 ,$data{'email'})                                      ,'<span class="LC_filename">'.$data{'email'}.'</span>'));
                            .'</p>';  
                     } else {                      } else {
                         $msg .=                          $confirm_msg =
                             '<p class="LC_error">'                              &Apache::lonhtmlcommon::confirm_success(
                            .&mt('An error occurred when sending e-mail to [_1]'                                  &mt('An error occurred when sending e-mail to [_1]'
                                .' confirming setting of your new password.'                                     .' confirming setting of your new password.'
                                 ,$data{'email'})                                      ,'<span class="LC_filename">'.$data{'email'}.'</span>'),1);
                            .'</p>';  
                     }                      }
                     $msg .= '<br />'                      $msg .=
                            .'<a href="/adm/login">'.&mt('Go to the login page').'</a>.';                          &Apache::loncommon::confirmwrapper($confirm_msg)
                          .&Apache::lonhtmlcommon::actionbox([
                               '<a href="/adm/login">'.&mt('Go to the login page').'</a>']);
                 } elsif ($change_failed eq 'invalid_client') {                  } elsif ($change_failed eq 'invalid_client') {
                     my $homeserver = &Apache::lonnet::homeserver($data{'username'},$data{'domain'});                      my $homeserver = &Apache::lonnet::homeserver($data{'username'},$data{'domain'});
                     if ($homeserver eq 'no_host') {                      if ($homeserver eq 'no_host') {

Removed from v.1.32  
changed lines
  Added in v.1.33


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>