Diff for /loncom/interface/lonhtmlcommon.pm between versions 1.179 and 1.180

version 1.179, 2008/08/24 12:56:28 version 1.180, 2008/09/05 22:12:47
Line 1310  returns: nothing Line 1310  returns: nothing
         my $faq = '';          my $faq = '';
         my $bug = '';          my $bug = '';
  my $help='';   my $help='';
    # Crumb Symbol
    my $crumbsymbol = ' ▶ ';
         # The last breadcrumb does not have a link, so handle it separately.          # The last breadcrumb does not have a link, so handle it separately.
         my $last = pop(@Crumbs);          my $last = pop(@Crumbs);
         #          #
Line 1333  returns: nothing Line 1335  returns: nothing
                 });                  });
         }          }
         my $links .=           my $links .= 
             join('->',              join($crumbsymbol,
                  map {                   map {
                      $faq = $_->{'faq'} if (exists($_->{'faq'}));                       $faq = $_->{'faq'} if (exists($_->{'faq'}));
                      $bug = $_->{'bug'} if (exists($_->{'bug'}));                       $bug = $_->{'bug'} if (exists($_->{'bug'}));
Line 1352  returns: nothing Line 1354  returns: nothing
                      $result;                       $result;
                      } @Crumbs                       } @Crumbs
                  );                   );
         $links .= '->' if ($links ne '');          $links .= $crumbsymbol if ($links ne '');
  if ($last->{'no_mt'}) {   if ($last->{'no_mt'}) {
     $links .= '<b>'.$last->{'text'}.'</b>';      $links .= '<b>'.$last->{'text'}.'</b>';
  } else {   } else {

Removed from v.1.179  
changed lines
  Added in v.1.180


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