[pLog-svn] r6963 - plog/branches/lifetype-1.2/class/action

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Mon Jan 18 20:12:01 EST 2010


Author: jondaley
Date: 2010-01-18 20:12:01 -0500 (Mon, 18 Jan 2010)
New Revision: 6963

Modified:
   plog/branches/lifetype-1.2/class/action/defaultaction.class.php
Log:
I'll bet this solves the problem where occasionally the home page is corrupted when URLs are accessed in a certain order.  The default view caches the page without checking what the URL is, and so they sometimes conflict.

Modified: plog/branches/lifetype-1.2/class/action/defaultaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/defaultaction.class.php	2010-01-19 01:09:17 UTC (rev 6962)
+++ plog/branches/lifetype-1.2/class/action/defaultaction.class.php	2010-01-19 01:12:01 UTC (rev 6963)
@@ -86,7 +86,8 @@
 							                        "userName" => $this->_userName,
 							                        "userId" => $this->_userId,
 													"searchTerms" => $this->_searchTerms,
-							                        "page" => $this->_page ));
+                                                    "page" => $this->_page,
+                                                    "url" => md5($_SERVER["REQUEST_URI"])));
 														  
 			// check if everything's cached because if it is, then we don't have to
 			// do any work... it's already been done before and we should "safely" assume



More information about the pLog-svn mailing list