[pLog-svn] r1713 - plog/branches/plog-1.1-ben/class/security

ork at devel.plogworld.net ork at devel.plogworld.net
Mon Apr 4 19:33:58 GMT 2005


Author: ork
Date: 2005-04-04 19:33:57 +0000 (Mon, 04 Apr 2005)
New Revision: 1713

Modified:
   plog/branches/plog-1.1-ben/class/security/pipeline.class.php
Log:
reorganized includes


Modified: plog/branches/plog-1.1-ben/class/security/pipeline.class.php
===================================================================
--- plog/branches/plog-1.1-ben/class/security/pipeline.class.php	2005-04-04 19:31:07 UTC (rev 1712)
+++ plog/branches/plog-1.1-ben/class/security/pipeline.class.php	2005-04-04 19:33:57 UTC (rev 1713)
@@ -10,11 +10,7 @@
 
 
 	include_once( PLOG_CLASS_PATH."class/object/object.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
     include_once( PLOG_CLASS_PATH."class/config/config.class.php" );
-    include_once( PLOG_CLASS_PATH."class/security/nullpipelinefilter.class.php" );
-    include_once( PLOG_CLASS_PATH."class/security/commentfilter.class.php" );
-    include_once( PLOG_CLASS_PATH."class/security/bayesianfilter.class.php" );
     
     /**
      * global array used to hold the list of filters that we're going to use in the pipeline.
@@ -90,6 +86,10 @@
          */
         function _registerDefaultFilters()
         {
+            include_once( PLOG_CLASS_PATH."class/security/nullpipelinefilter.class.php" );
+            include_once( PLOG_CLASS_PATH."class/security/commentfilter.class.php" );
+            include_once( PLOG_CLASS_PATH."class/security/bayesianfilter.class.php" );
+
             $this->registerFilter( "NullPipelineFilter" );
             $this->registerFilter( "CommentFilter" );
             $this->registerFilter( "BayesianFilter" );




More information about the pLog-svn mailing list