Diff for /loncom/interface/lonprintout.pm between versions 1.669 and 1.671

version 1.669, 2019/02/17 03:42:24 version 1.671, 2020/02/29 16:05:30
Line 2079  sub unsupported { Line 2079  sub unsupported {
         $currentURL=~s|^http://https://|https://|;          $currentURL=~s|^http://https://|https://|;
  my $title=&Apache::lonnet::gettitle($symb);   my $title=&Apache::lonnet::gettitle($symb);
  $title = &Apache::lonxml::latex_special_symbols($title);   $title = &Apache::lonxml::latex_special_symbols($title);
  $result.=' \strut \\\\ '.$title.' \strut \\\\ '.$currentURL.' ';          my $url =  &Apache::lonxml::latex_special_symbols($currentURL);
    $result.=' \strut \\\\ '.$title.' \strut \\\\ '.$url.' ';
     } else {      } else {
  $result.=$currentURL;   $result.= &Apache::lonxml::latex_special_symbols($currentURL);
     }      }
     $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';      $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';
     return $result;      return $result;

Removed from v.1.669  
changed lines
  Added in v.1.671


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