Diff for /loncom/interface/lonhtmlcommon.pm between versions 1.54 and 1.55

version 1.54, 2004/02/20 16:44:43 version 1.55, 2004/02/20 17:03:38
Line 60  use Time::HiRes; Line 60  use Time::HiRes;
 use Apache::lonlocal;  use Apache::lonlocal;
 use strict;  use strict;
   
   
 ##############################################  ##############################################
 ##############################################  ##############################################
   
Line 879  returns: nothing Line 878  returns: nothing
     my @Crumbs;      my @Crumbs;
   
     sub breadcrumbs {      sub breadcrumbs {
         my ($color,$component,$component_help) = @_;          my ($color,$component,$component_help,$function,$domain) = @_;
         $color = '#CCCCFF' if (! defined($color));          if (! defined($color)) {
               if (! defined($function)) {
                   $function = &Apache::loncommon::get_users_function();
               }
               $color = &Apache::loncommon::designparm($function.'.tabbg',
                                                       $domain);
           }
         #          #
         my $Str = "\n".          my $Str = "\n".
             '<table width="100%" border="0" cellpadding="0" cellspacing="0">'.              '<table width="100%" border="0" cellpadding="0" cellspacing="0">'.

Removed from v.1.54  
changed lines
  Added in v.1.55


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