Diff for /loncom/interface/loncommon.pm between versions 1.1312 and 1.1313

version 1.1312, 2018/04/14 02:29:44 version 1.1313, 2018/04/15 00:28:07
Line 5837  sub CSTR_pageheader { Line 5837  sub CSTR_pageheader {
         $title = &mt('Authoring Space');          $title = &mt('Authoring Space');
     }      }
   
       my $target;
       if (($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) {
           $target = ' target="_top"'; #FIXME lonpubdir: target="_parent"
       }
   
     my $output =      my $output =
          '<div>'           '<div>'
         .&Apache::loncommon::help_open_menu('','',3,'Authoring') #FIXME: Broken? Where is it?          .&Apache::loncommon::help_open_menu('','',3,'Authoring') #FIXME: Broken? Where is it?
         .'<b>'.$title.'</b> '          .'<b>'.$title.'</b> '
         .'<form name="dirs" method="post" action="'.$formaction          .'<form name="dirs" method="post" action="'.$formaction.$target.'>'
         .'" target="_top">' #FIXME lonpubdir: target="_parent"  
         .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv/'.$udom,undef,undef);          .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv/'.$udom,undef,undef);
   
     if ($lastitem) {      if ($lastitem) {

Removed from v.1.1312  
changed lines
  Added in v.1.1313


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