Diff for /loncom/auth/localstudentphoto.pm between versions 1.3 and 1.4

version 1.3, 2006/02/07 05:08:24 version 1.4, 2006/02/10 02:38:59
Line 81  sub thumbsettings { Line 81  sub thumbsettings {
     return ($fullsize,$thumbsize);      return ($fullsize,$thumbsize);
 }  }
   
   ###############################
   # sub AUTOLOAD
   #
   # Incoming data: none
   # Returns ''
   #
   # Prevents errors when undefined subroutines are called in this package
   # Will allow new routines added in the future to be called from lond etc.
   # without the need for customized versions of local*.pm packages to be
   # modified to include the new subroutines immediately.
   #
   # See "Programming Perl" 3rd ed. pp 296-298.
   ###############################
                                                                                   
   sub AUTOLOAD {
       our $AUTOLOAD;
       return '';
   }
   
 1;  1;
 __END__  __END__

Removed from v.1.3  
changed lines
  Added in v.1.4


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