Diff for /loncom/interface/loncommon.pm between versions 1.663 and 1.664

version 1.663, 2008/06/30 03:56:27 version 1.664, 2008/07/06 05:01:52
Line 8544  sub assign_category_rows { Line 8544  sub assign_category_rows {
                             }                              }
                         }                          }
                     }                      }
                     $text .= '<tr><td><label><input type="checkbox" name="usecategory" value="'                      $text .= '<tr><td><span class="LC_nobreak"><label>'.
                              .$item.'"'.$checked.' />'.$name.'</label></span></td><td>';                               '<input type="checkbox" name="usecategory" value="'.
                                $item.'"'.$checked.' />'.$name.'</label></span></td><td>';
                     if (ref($path) eq 'ARRAY') {                      if (ref($path) eq 'ARRAY') {
                         push(@{$path},$name);                          push(@{$path},$name);
                         $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);                          $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);
Line 8565  sub assign_category_rows { Line 8566  sub assign_category_rows {
   
   
 sub commit_customrole {  sub commit_customrole {
     my ($udom,$uname,$url,$three,$four,$five,$start,$end) = @_;      my ($udom,$uname,$url,$three,$four,$five,$start,$end,$context) = @_;
     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.      my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.
                          ($start?', '.&mt('starting').' '.localtime($start):'').                           ($start?', '.&mt('starting').' '.localtime($start):'').
                          ($end?', ending '.localtime($end):'').': <b>'.                           ($end?', ending '.localtime($end):'').': <b>'.
               &Apache::lonnet::assigncustomrole(                &Apache::lonnet::assigncustomrole(
                  $udom,$uname,$url,$three,$four,$five,$end,$start).                   $udom,$uname,$url,$three,$four,$five,$end,$start,undef,undef,$context).
                  '</b><br />';                   '</b><br />';
     return $output;      return $output;
 }  }

Removed from v.1.663  
changed lines
  Added in v.1.664


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