Diff for /loncom/interface/statistics/lonstathelpers.pm between versions 1.47 and 1.48

version 1.47, 2005/04/07 07:34:52 version 1.48, 2005/04/07 17:12:09
Line 338  sub new_accumulator { Line 338  sub new_accumulator {
 sub get_selected_symbs {  sub get_selected_symbs {
     my ($inputfield) = @_;      my ($inputfield) = @_;
     my $field = 'form.'.$inputfield;      my $field = 'form.'.$inputfield;
     my @Symbs = &Apache::loncommon::get_env_multiple($field);      my @symbs = (map {
     @Symbs = (map {&Apache::lonnet::unescape($_);} @{$env{$field}});                       &Apache::lonnet::unescape($_);
     return @Symbs;                       } &Apache::loncommon::get_env_multiple($field));
       return @symbs;
 }  }
   
 ####################################################  ####################################################

Removed from v.1.47  
changed lines
  Added in v.1.48


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