Diff for /loncom/interface/groupsort.pm between versions 1.17 and 1.18

version 1.17, 2003/01/09 22:04:28 version 1.18, 2003/01/14 18:47:50
Line 45  my %hash; # variable to tie to user spec Line 45  my %hash; # variable to tie to user spec
 my $iconpath; # variable to be accessible to multiple subroutines  my $iconpath; # variable to be accessible to multiple subroutines
   
 sub cleanup {  sub cleanup {
    untie(%hash) if (tied(%hash));      if (tied(%hash)){
    &Apache::lonnet::logthis('Cleanup groupsort: hash');
           unless (untie(%hash)) {
       &Apache::lonnet::logthis('Failed cleanup groupsort: hash');
           }
       }
 }  }
   
 # ---------------------------------------------------------------- Main Handler  # ---------------------------------------------------------------- Main Handler

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


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