Diff for /loncom/interface/courseprefs.pm between versions 1.3 and 1.4

version 1.3, 2009/05/12 21:20:42 version 1.4, 2009/05/17 00:54:38
Line 66  sub handler { Line 66  sub handler {
         return HTTP_NOT_ACCEPTABLE;          return HTTP_NOT_ACCEPTABLE;
     }      }
   
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                                               ['phase','actions','origin']);
     &Apache::lonhtmlcommon::clear_breadcrumbs();      &Apache::lonhtmlcommon::clear_breadcrumbs();
       if ($env{'form.origin'} eq 'params') {
           &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/parmset",
                                                   text=>"Parameter Manager"});
       }
     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/courseprefs',      &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/courseprefs',
         text=>"Course Configuration"});          text=>"Course Configuration"});
     my $breadcrumbs =      my $breadcrumbs =
         &Apache::lonhtmlcommon::breadcrumbs('Edit Course Configuration');          &Apache::lonhtmlcommon::breadcrumbs('Edit Course Configuration');
   
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},  
                                             ['phase','actions']);  
   
     my $phase = 'pickactions';      my $phase = 'pickactions';
     if ( exists($env{'form.phase'}) ) {      if ( exists($env{'form.phase'}) ) {
         $phase = $env{'form.phase'};          $phase = $env{'form.phase'};

Removed from v.1.3  
changed lines
  Added in v.1.4


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