Diff for /loncom/homework/lonhomework.pm between versions 1.367 and 1.368

version 1.367, 2017/01/05 19:39:31 version 1.368, 2017/04/03 13:01:43
Line 1825  sub helpmenu_datastructure { Line 1825  sub helpmenu_datastructure {
  my $title = $helpers->[$count]->[1];   my $title = $helpers->[$count]->[1];
  my $width = $helpers->[$count]->[2];   my $width = $helpers->[$count]->[2];
                 my $height = $helpers->[$count]->[3];                  my $height = $helpers->[$count]->[3];
                   if ($width eq '') {
                       $width = 500;
                   }
                   if ($height eq '') {
                       $height = 600;
                   }
  my $href = &HTML::Entities::encode("javascript:openMyModal('/adm/help/$filename',$width,$height,'yes');");   my $href = &HTML::Entities::encode("javascript:openMyModal('/adm/help/$filename',$width,$height,'yes');");
  push @{$help_structure}, [$href, $title, undef];   push @{$help_structure}, [$href, $title, undef];
  }   }

Removed from v.1.367  
changed lines
  Added in v.1.368


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