Diff for /loncom/interface/loncommon.pm between versions 1.463 and 1.466

version 1.463, 2006/10/12 18:17:57 version 1.466, 2006/10/31 22:05:53
Line 2067  sub getnames { Line 2067  sub getnames {
     }      }
 }  }
   
   sub getemails {
       my ($uname,$udom)=@_;
       if ($udom eq 'public' && $uname eq 'public') {
    return;
       }
       my $id=$uname.':'.$udom;
       my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
       if ($cached) {
    return %{$names};
       } else {
    my %loadnames=&Apache::lonnet::get('environment',
                         ['notification','critnotification',
       'permanentemail'],
      $udom,$uname);
    &Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
    return %loadnames;
       }
   }
   
 # ------------------------------------------------------------------ Screenname  # ------------------------------------------------------------------ Screenname
   
 =pod  =pod
Line 3388  table.LC_whatsnew tr.LC_empty_row td { Line 3407  table.LC_whatsnew tr.LC_empty_row td {
   text-align: center;    text-align: center;
   padding: 8px;    padding: 8px;
 }  }
   table.LC_whatsnew tr.LC_empty_row td {
     padding: 4ex
   }
   
   
 table.LC_whatsnew {  table.LC_whatsnew {
 }  }
Line 3728  Inputs: $title - optional title for the Line 3751  Inputs: $title - optional title for the
             bgcolor        -> override the default page bgcolor              bgcolor        -> override the default page bgcolor
             no_auto_mt_title              no_auto_mt_title
                            -> prevent &mt()ing the title arg                             -> prevent &mt()ing the title arg
   
 =back  =back
   
 =cut  =cut
Line 4676  sub get_env_multiple { Line 4700  sub get_env_multiple {
   
 =pod  =pod
   
 =back   =back
   
 =head1 CSV Upload/Handling functions  =head1 CSV Upload/Handling functions
   

Removed from v.1.463  
changed lines
  Added in v.1.466


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