Diff for /loncom/interface/loncommon.pm between versions 1.1075.2.167 and 1.1075.2.168

version 1.1075.2.167, 2024/07/04 23:00:26 version 1.1075.2.168, 2024/07/31 22:14:33
Line 8283  OFFLOAD Line 8283  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.1075.2.167  
changed lines
  Added in v.1.1075.2.168


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