dougm       01/07/11 08:12:11

  Modified:    lib/Apache PerlRun.pm
               .        Changes
  Log:
  remove $r->finfo usage from Apache::PerlRun, clearly finfo isn't as
  stable as it should be
  
  Revision  Changes    Path
  1.37      +3 -1      modperl/lib/Apache/PerlRun.pm
  
  Index: PerlRun.pm
  ===================================================================
  RCS file: /home/cvs/modperl/lib/Apache/PerlRun.pm,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- PerlRun.pm        2001/01/29 22:13:40     1.36
  +++ PerlRun.pm        2001/07/11 15:11:57     1.37
  @@ -32,7 +32,9 @@
       my($pr) = @_;
       my $r = $pr->{r};
       my $filename = $r->filename;
  -    if (-r $r->finfo && -s _) {
  +#XXX reported problems with $r->finfo
  +#    if (-r $r->finfo && -s _) {
  +    if (-r $filename && -s _) {
        if (!($r->allow_options & OPT_EXECCGI)) {
            $r->log_reason("Options ExecCGI is off in this directory",
                           $filename);
  
  
  
  1.613     +4 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.612
  retrieving revision 1.613
  diff -u -r1.612 -r1.613
  --- Changes   2001/07/11 03:02:28     1.612
  +++ Changes   2001/07/11 15:12:06     1.613
  @@ -10,6 +10,10 @@
   
   =item 1.25_02-dev
   
  +remove $r->finfo usage from Apache::PerlRun, clearly finfo isn't as
  +stable as it should be
  +[Surat Singh Bhati <[EMAIL PROTECTED]>]
  +
   Apache->server will now point the current VirtualHost when inside a
   <Perl> section, thanks to Robin Berjon for the spot
   
  
  
  

Reply via email to