[pLog-svn] r3063 - plog/trunk/class/summary/view
    mark at devel.lifetype.net 
    mark at devel.lifetype.net
       
    Mon Mar 13 01:35:23 GMT 2006
    
    
  
Author: mark
Date: 2006-03-13 01:35:23 +0000 (Mon, 13 Mar 2006)
New Revision: 3063
Modified:
   plog/trunk/class/summary/view/summarycachedview.class.php
Log:
Fix a error notice.
Modified: plog/trunk/class/summary/view/summarycachedview.class.php
===================================================================
--- plog/trunk/class/summary/view/summarycachedview.class.php	2006-03-12 22:02:37 UTC (rev 3062)
+++ plog/trunk/class/summary/view/summarycachedview.class.php	2006-03-13 01:35:23 UTC (rev 3063)
@@ -50,7 +50,7 @@
 		function generateCacheId()
 		{
 			foreach( $this->_data as $key => $value )
-			$cacheId .= "$key=$value";
+			$cacheId = "$key=$value";
 			$cacheId = md5($cacheId);
 			
 			return $cacheId;
    
    
More information about the pLog-svn
mailing list