Diff for /loncom/interface/spreadsheet/lonspreadsheet.pm between versions 1.16 and 1.17

version 1.16, 2003/07/16 13:52:19 version 1.17, 2003/07/17 15:22:14
Line 214  sub handler { Line 214  sub handler {
             $r->uri.":opa:0:0:Cannot modify spreadsheet";              $r->uri.":opa:0:0:Cannot modify spreadsheet";
         return HTTP_NOT_ACCEPTABLE;           return HTTP_NOT_ACCEPTABLE; 
     }      }
       my $courseid = $ENV{'request.course.id'};
       #
       # Do not allow students to continue if standard grading is in effect.
       if ($ENV{'request.role'} =~ /^st\./) {
           if ($ENV{'course.'.$courseid.'.grading'} eq 'standard') {
               return HTTP_NOT_ACCEPTABLE;
           }
       }
     #      #
     # Get query string for limited number of parameters      # Get query string for limited number of parameters
     #      #

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


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