You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ch...@locus.apache.org on 2000/05/29 10:11:15 UTC

cvs commit: modperl/lib/Apache RegistryBB.pm

cholet      00/05/29 01:11:15

  Modified:    .        Changes
               lib/Apache RegistryBB.pm
  Log:
  RegistryBB uses DECLINED but wasn't importing it
  
  Revision  Changes    Path
  1.493     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.492
  retrieving revision 1.493
  diff -u -r1.492 -r1.493
  --- Changes	2000/05/25 18:06:10	1.492
  +++ Changes	2000/05/29 08:11:14	1.493
  @@ -10,6 +10,9 @@
   
   =item 1.24_01-dev
   
  +constant 'DECLINED' wasn't imported by Apache::RegistryBB, thanks to
  +Michael Blakeley for the spot [Eric Cholet <ch...@logilune.com>]
  +
   fixes for building with stronghold
   [Sander van Zoest <sa...@vanZoest.com>]
   
  
  
  
  1.4       +1 -1      modperl/lib/Apache/RegistryBB.pm
  
  Index: RegistryBB.pm
  ===================================================================
  RCS file: /home/cvs/modperl/lib/Apache/RegistryBB.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RegistryBB.pm	2000/03/04 21:02:28	1.3
  +++ RegistryBB.pm	2000/05/29 08:11:14	1.4
  @@ -2,7 +2,7 @@
   
   use strict;
   use vars qw(@ISA);
  -use Apache::Constants qw(NOT_FOUND FORBIDDEN OK);
  +use Apache::Constants qw(NOT_FOUND FORBIDDEN OK DECLINED);
   use Apache::RegistryNG (); 
   @ISA = qw(Apache::RegistryNG);