Diff for /loncom/metadata_database/LONCAPA/lonmetadata.pm between versions 1.16 and 1.17

version 1.16, 2007/01/02 12:53:27 version 1.17, 2007/01/12 21:30:58
Line 1134  sub getfile { Line 1134  sub getfile {
     if (! -e $file ) {       if (! -e $file ) { 
         return undef;           return undef; 
     }      }
     my $fh=IO::File->new($file);      open(my $fh,"<$file");
     my $contents = '';      my $contents = '';
     while (<$fh>) {       while (<$fh>) { 
         $contents .= $_;          $contents .= $_;

Removed from v.1.16  
changed lines
  Added in v.1.17


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