Diff for /loncom/interface/domainprefs.pm between versions 1.438 and 1.439

version 1.438, 2024/04/14 17:12:27 version 1.439, 2024/04/17 01:02:47
Line 13425  sub modify_authordefaults { Line 13425  sub modify_authordefaults {
                            'nocodemirror' => 'off',                             'nocodemirror' => 'off',
                            'daxecollapse' => 'off',                             'daxecollapse' => 'off',
                            'domcoordacc'  => 'on',                             'domcoordacc'  => 'on',
                            'editors'      => ['edit','xml'].                             'editors'      => ['edit','xml'],
                            'authorquota'  => 500,                             'authorquota'  => 500,
                            'webdav'       => 0,                             'webdav'       => 0,
                          );                           );
Line 13506  sub modify_authordefaults { Line 13506  sub modify_authordefaults {
                 $changes{$item} = 1;                  $changes{$item} = 1;
             }              }
         }          }
           my @diffs =
               &Apache::loncommon::compare_arrays($confhash{'editors'},
                                                  $staticdefaults{'editors'});
           unless (@diffs == 0) {
               $changes{'editors'} = 1;
           }
     }      }
     foreach my $key ('authorquota','webdav') {      foreach my $key ('authorquota','webdav') {
         if (ref($curr_quotas{$key}) eq 'HASH') {          if (ref($curr_quotas{$key}) eq 'HASH') {
Line 13626  sub modify_authordefaults { Line 13632  sub modify_authordefaults {
             if ($domcoordoverride) {              if ($domcoordoverride) {
                 $resulttext .= '</ul></li>';                  $resulttext .= '</ul></li>';
             }              }
               $resulttext .= '</ul>';
             my $cachetime = 24*60*60;              my $cachetime = 24*60*60;
             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);              &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
             if (ref($lastactref) eq 'HASH') {              if (ref($lastactref) eq 'HASH') {

Removed from v.1.438  
changed lines
  Added in v.1.439


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