You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2003/02/03 06:45:24 UTC

cvs commit: modperl-docs/src/docs/2.0/user/handlers filters.pod

stas        2003/02/02 21:45:24

  Modified:    src/docs/2.0/user/handlers filters.pod
  Log:
  fix a bug in examples, use base for Apache::Filter, to inherit the
  sub attributes
  
  Revision  Changes    Path
  1.11      +2 -2      modperl-docs/src/docs/2.0/user/handlers/filters.pod
  
  Index: filters.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/handlers/filters.pod,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- filters.pod	9 Dec 2002 16:47:41 -0000	1.10
  +++ filters.pod	3 Feb 2003 05:45:23 -0000	1.11
  @@ -848,7 +848,7 @@
     use strict;
     use warnings;
     
  -  use Apache::Filter ();
  +  use base qw(Apache::Filter);
     
     use Apache::Const -compile => qw(OK);
     
  @@ -944,7 +944,7 @@
     use strict;
     use warnings;
     
  -  use Apache::Filter;
  +  use base qw(Apache::Filter);
     
     use APR::Brigade ();
     use APR::Bucket ();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org