[pLog-svn] r3666 - plog/trunk/class/summary/action

oscar at devel.lifetype.net oscar at devel.lifetype.net
Wed Jun 28 20:40:37 GMT 2006


Author: oscar
Date: 2006-06-28 20:40:37 +0000 (Wed, 28 Jun 2006)
New Revision: 3666

Modified:
   plog/trunk/class/summary/action/dofinishregister.class.php
Log:
the perform() method in this class should return true too, or else it'll force the controller to keep retrying this step until it returns true.


Modified: plog/trunk/class/summary/action/dofinishregister.class.php
===================================================================
--- plog/trunk/class/summary/action/dofinishregister.class.php	2006-06-28 19:51:59 UTC (rev 3665)
+++ plog/trunk/class/summary/action/dofinishregister.class.php	2006-06-28 20:40:37 UTC (rev 3666)
@@ -63,7 +63,9 @@
             $this->doneRegister();
             
             // reset the summary cache, since there's new information to show
-            CacheControl::resetSummaryCache();              
+            CacheControl::resetSummaryCache(); 
+
+           return( true );
         }
 
         /**
@@ -241,7 +243,7 @@
                 // add the blog object to the template
                 $this->_view->setValue( "blog", $this->_blogInfo );
             }
-            
+
             $this->setCommonData();
             return true;
         }



More information about the pLog-svn mailing list