Diff for /loncom/lonnet/perl/lonnet.pm between versions 1.867 and 1.868

version 1.867, 2007/04/10 20:29:53 version 1.868, 2007/04/11 21:37:20
Line 830  sub retrieve_inst_usertypes { Line 830  sub retrieve_inst_usertypes {
     return (\%returnhash,\@order);      return (\%returnhash,\@order);
 }  }
   
   sub is_domainimage {
       my ($url) = @_;
       if ($url=~m-^/+res/+($match_domain)/+\1\-domainconfig/+(img|logo|domlogo)/+-) {
           if (&domain($1) ne '') {
               return '1';
           }
       }
       return;
   }
   
 # --------------------------------------------------- Assign a key to a student  # --------------------------------------------------- Assign a key to a student
   
 sub assign_access_key {  sub assign_access_key {

Removed from v.1.867  
changed lines
  Added in v.1.868


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