[pLog-svn] r3802 - plugins/trunk/badbehavior

mark at devel.lifetype.net mark at devel.lifetype.net
Tue Jul 25 18:19:18 GMT 2006


Author: mark
Date: 2006-07-25 18:19:18 +0000 (Tue, 25 Jul 2006)
New Revision: 3802

Modified:
   plugins/trunk/badbehavior/pluginbadbehavior.class.php
Log:
"underfined variable" bug fixed.

Modified: plugins/trunk/badbehavior/pluginbadbehavior.class.php
===================================================================
--- plugins/trunk/badbehavior/pluginbadbehavior.class.php	2006-07-25 17:34:08 UTC (rev 3801)
+++ plugins/trunk/badbehavior/pluginbadbehavior.class.php	2006-07-25 18:19:18 UTC (rev 3802)
@@ -58,7 +58,7 @@
 			if( !$this->_displayStatus )
 				return false;
 			
-			$query = "SELECT COUNT(id) as counter FROM " . $settings['log_table'] . " WHERE `key` NOT LIKE '00000000'";
+			$query = "SELECT COUNT(id) as counter FROM " . $this->_logTable . " WHERE `key` NOT LIKE '00000000'";
         	
         	$result = $this->db->Execute($query);
 	    	if(!$result || ($result->RecordCount() == 0))



More information about the pLog-svn mailing list