Diff for /loncom/interface/lonfeedback.pm between versions 1.376 and 1.378

version 1.376, 2017/11/12 17:41:32 version 1.378, 2017/12/18 23:20:48
Line 674  END Line 674  END
                                              $newpostsflag,$group,                                               $newpostsflag,$group,
                                              $prevread,$markondisp,$seehidden);                                               $prevread,$markondisp,$seehidden);
             $discussion .= "</table></form>\n";              $discussion .= "</table></form>\n";
         }           }
         if ($outputtarget eq 'export') {          if ($outputtarget eq 'export') {
             if ($manifestok) {              if ($manifestok) {
                 while ($currdepth > 0) {                  while ($currdepth > 0) {
Line 698  END Line 698  END
   
                     if (($env{'user.name'} =~ /^$match_username$/)                      if (($env{'user.name'} =~ /^$match_username$/)
                         && ($env{'user.domain'} =~ /^$match_domain$/)) {                          && ($env{'user.domain'} =~ /^$match_domain$/)) {
                         my $now = time();                           my $now = time();
                         my $imszipfile = '/prtspool/'.                          my $imszipfile = '/prtspool/'.
                                       join('_',$env{'user.name'},$env{'user.domain'},$now).                                        join('_',$env{'user.name'},$env{'user.domain'},$now).
                                       '_'.rand(1000000000).'.zip';                                        '_'.rand(1000000000).'.zip';
                         my $zip = Archive::Zip->new();                          my $zip = Archive::Zip->new();
                         $zip->addTree($tempexport);                          $zip->addTree($tempexport);
                         my $imszip = '/home/httpd/'.$imszipfile;                          my $imszip = '/home/httpd/'.$imszipfile;
                         if ($zip->writeToFileNamed($imszip) == AZ_OK) {                           if ($zip->writeToFileNamed($imszip) == AZ_OK) {
                             $discussion .= &mt('Download the zip file from [_1]Discussion Posting Archive[_2]',                              $discussion .= &mt('Download the zip file from [_1]Discussion Posting Archive[_2]',
                                            '<a href="'.$imszipfile.'">','</a>').'<br />';                                             '<a href="'.$imszipfile.'">','</a>').'<br />';
                         } else {                          } else {
Line 4552  ENDREDIR Line 4552  ENDREDIR
   ($env{'request.course.id'} && ($feedurl!~m:^/adm:))    ($env{'request.course.id'} && ($feedurl!~m:^/adm:))
   ||    ||
   ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))    ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
             ||
             (($env{'request.course.id'} && ($feedurl =~ /ext\.tool$/)))
   ) {    ) {
   &Apache::loncommon::content_type($r,'text/html');    &Apache::loncommon::content_type($r,'text/html');
   $r->send_http_header;    $r->send_http_header;

Removed from v.1.376  
changed lines
  Added in v.1.378


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