Diff for /loncom/interface/lonpreferences.pm between versions 1.196.4.21 and 1.196.4.22

version 1.196.4.21, 2016/09/16 22:00:55 version 1.196.4.22, 2016/09/16 22:47:17
Line 1394  sub client_form { Line 1394  sub client_form {
     my $output = '<form name="client" action="">'      my $output = '<form name="client" action="">'
                 .&Apache::lonhtmlcommon::start_pick_box();                  .&Apache::lonhtmlcommon::start_pick_box();
     if ($caller eq 'reset_by_email') {      if ($caller eq 'reset_by_email') {
           my $mobileargs;
           (undef,undef,undef,undef,undef,undef,my $clientmobile) =
               &Apache::loncommon::decode_user_agent();
           if ($clientmobile) {
               $mobileargs = 'autocapitalize="off" autocorrect="off" ';
           }
         $output .= &Apache::lonhtmlcommon::row_title(          $output .= &Apache::lonhtmlcommon::row_title(
                        '<label for="email">'.$lt{'email'}.'</label>')                         '<label for="email">'.$lt{'email'}.'</label>')
                   .'<input type="text" name="email" size="30" />'                    .'<input type="text" name="email" size="30" '.$mobileargs.'/>'
                   .&Apache::lonhtmlcommon::row_closure()                    .&Apache::lonhtmlcommon::row_closure()
                   .&Apache::lonhtmlcommon::row_title(                    .&Apache::lonhtmlcommon::row_title(
                        '<label for="uname">'.$lt{'username'}.'</label>')                         '<label for="uname">'.$lt{'username'}.'</label>')
                   .'<input type="text" name="uname" size="20" />'                    .'<input type="text" name="uname" size="20" '.$mobileargs.'/>'
                   .'<input type="hidden" name="currentpass" value="'.$currentpass.'" />'                    .'<input type="hidden" name="currentpass" value="'.$currentpass.'" />'
                   .&Apache::lonhtmlcommon::row_closure()                    .&Apache::lonhtmlcommon::row_closure()
                   .&Apache::lonhtmlcommon::row_title(                    .&Apache::lonhtmlcommon::row_title(

Removed from v.1.196.4.21  
changed lines
  Added in v.1.196.4.22


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