Diff for /loncom/interface/portfolio.pm between versions 1.254.2.6.2.2 and 1.254.2.6.2.3

version 1.254.2.6.2.2, 2024/08/19 01:32:58 version 1.254.2.6.2.3, 2024/09/07 01:38:36
Line 314  sub display_directory { Line 314  sub display_directory {
                 &mt('Using the portfolio file list'))                  &mt('Using the portfolio file list'))
            .'</p>'             .'</p>'
         );          );
           my ($acl_helpfile,$acl_helplink);
           if ($can_setacl) {
               $acl_helpfile = 'Portfolio ShareFile';
           } elsif ($caller eq 'coursegrp_portfolio') {
               $acl_helpfile = 'Portfolio ShareFile Group';
           }
           unless ($can_setacl || $can_viewacl) {
               $acl_helpfile = 'Portfolio ShareFile Off';
           }
           if ($acl_helpfile) {
               $acl_helplink = &Apache::loncommon::help_open_topic($acl_helpfile);
           }
         $r->print(&Apache::loncommon::start_data_table()          $r->print(&Apache::loncommon::start_data_table()
                  .&Apache::loncommon::start_data_table_header_row()                   .&Apache::loncommon::start_data_table_header_row()
                  .'<th colspan="2">'.&mt('Actions'). &Apache::loncommon::help_open_topic('Portfolio FileAction').'</th>'                   .'<th colspan="2">'.&mt('Actions'). &Apache::loncommon::help_open_topic('Portfolio FileAction').'</th>'
Line 323  sub display_directory { Line 335  sub display_directory {
                  .'<th>'.&mt('Size').'</th>'                   .'<th>'.&mt('Size').'</th>'
                  .'<th>'.&mt('Last Modified').'</th>'                   .'<th>'.&mt('Last Modified').'</th>'
                  .'<th>&nbsp;</th>'                   .'<th>&nbsp;</th>'
                  .'<th>'.&mt('Current Access Status').&Apache::loncommon::help_open_topic('Portfolio ShareFile').'</th>'                   .'<th>'.&mt('Current Access Status').$acl_helplink.'</th>'
                  .&Apache::loncommon::end_data_table_header_row());                   .&Apache::loncommon::end_data_table_header_row());
     }      }
   

Removed from v.1.254.2.6.2.2  
changed lines
  Added in v.1.254.2.6.2.3


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