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

version 1.53, 2004/02/20 16:21:49 version 1.54, 2004/02/20 16:44:43
Line 905  returns: nothing Line 905  returns: nothing
                  );                   );
         $links .= '->' if ($links ne '');          $links .= '->' if ($links ne '');
         $links .= '<b>'.$last->{'text'}.'</b>';          $links .= '<b>'.$last->{'text'}.'</b>';
           #
           my $icons = '';
           if (exists($last->{'faq'})) {
               $icons .= &Apache::loncommon::help_open_faq($last->{'faq'});
           }
         if (exists($last->{'bug'})) {          if (exists($last->{'bug'})) {
             $links = &Apache::loncommon::help_open_bug($last->{'bug'}).$links;              $icons .= &Apache::loncommon::help_open_bug($last->{'bug'});
         }          }
         if (exists($last->{'faq'})) {          if ($icons ne '') {
             $links = &Apache::loncommon::help_open_faq($last->{'faq'}).$links;              $Str .= $icons.'&nbsp;';
         }          }
           #
         $Str .= $links.'</font></td>';          $Str .= $links.'</font></td>';
           #
         if (defined($component)) {          if (defined($component)) {
             $Str .= '<td align="right" bgcolor="'.$color.'">'.              $Str .= '<td align="right" bgcolor="'.$color.'">'.
                 '<font size="+1">'.$component.'</font>';                  '<font size="+1">'.$component.'</font>';

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


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