[pLog-svn] r3063 - plog/trunk/class/summary/view

Jon Daley plogworld at jon.limedaley.com
Mon Mar 13 01:59:05 GMT 2006


 	Without knowing any context other than what is printed here, this 
looks like a wrong fix.

I would guess it should be:
function generateCacheId(){
   cacheId = "";
   foreach( $this->_data as $key => $value )
     $cacheId .= "$key=$value";
   $cacheId = md5($cacheId);
   return $cacheId;


On Mon, 13 Mar 2006, mark at devel.lifetype.net wrote:

> 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;
>
> _______________________________________________
> pLog-svn mailing list
> pLog-svn at devel.lifetype.net
> http://devel.lifetype.net/mailman/listinfo/plog-svn
>

**************************************
Jon Daley
http://jon.limedaley.com/

Always be sincere, even when you don't mean it.
-- Irene Peter


More information about the pLog-svn mailing list