Diff for /loncom/interface/loncommon.pm between versions 1.1431 and 1.1432

version 1.1431, 2024/05/21 02:57:15 version 1.1432, 2024/07/14 01:26:01
Line 9614  OFFLOAD Line 9614  OFFLOAD
  $title = 'The LearningOnline Network with CAPA';   $title = 'The LearningOnline Network with CAPA';
     }      }
     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }      if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
     $result .= '<title> LON-CAPA '.$title.'</title>'      if ($title =~ /^LON-CAPA\s+/) {
  .'<link rel="stylesheet" type="text/css" href="'.$url.'"';          $result .= '<title> '.$title.'</title>';
       } else {
           $result .= '<title> LON-CAPA '.$title.'</title>';
       }
       $result .= "\n".'<link rel="stylesheet" type="text/css" href="'.$url.'"';
     if (!$args->{'frameset'}) {      if (!$args->{'frameset'}) {
         $result .= ' /';          $result .= ' /';
     }      }

Removed from v.1.1431  
changed lines
  Added in v.1.1432


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