[pLog-svn] r3260 - plog/trunk/class/security

pwestbro at devel.lifetype.net pwestbro at devel.lifetype.net
Wed Apr 19 05:58:08 GMT 2006


Author: pwestbro
Date: 2006-04-19 05:58:07 +0000 (Wed, 19 Apr 2006)
New Revision: 3260

Modified:
   plog/trunk/class/security/pipeline.class.php
Log:
Reverted change number 3251


Modified: plog/trunk/class/security/pipeline.class.php
===================================================================
--- plog/trunk/class/security/pipeline.class.php	2006-04-18 14:41:19 UTC (rev 3259)
+++ plog/trunk/class/security/pipeline.class.php	2006-04-19 05:58:07 UTC (rev 3260)
@@ -134,7 +134,6 @@
             // Assume that this will be successful
             $this->_result = new PipelineResult( true );
 
-            $numPipelinesRun = 0;
             // if enabled, then check all the filters
             foreach( $_pLogPipelineRegisteredFilters as $filterClass ) {
                 // create an instance of the filter
@@ -153,7 +152,6 @@
                     // break out of this loop
                     break;
                 }
-                $numPipelinesRun++;
             }
     
             // If one of the filters returns that this was not a valid result
@@ -164,12 +162,6 @@
                 // want to do (i.e. report ip address to dns blacklist)
     
                 foreach( $_pLogPipelineRegisteredFilters as $filterClass ) {
-                    if( $numPipelinesRun-- <= 0 )
-                    {
-                        // We have run all of the pipelines in the initial loop
-                        break;
-                    }
-
                     // create an instance of the filter
                     $pipelineRequest = new PipelineRequest( $this->_httpRequest, 
                                                             $this->_blogInfo, 



More information about the pLog-svn mailing list