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

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Jun 26 21:21:00 GMT 2006


Author: oscar
Date: 2006-06-26 21:20:59 +0000 (Mon, 26 Jun 2006)
New Revision: 3657

Modified:
   plog/trunk/class/summary/action/doreadagreement.class.php
Log:
solved an issue with SummaryController::setForwardAction, which just doesn't exist anymore


Modified: plog/trunk/class/summary/action/doreadagreement.class.php
===================================================================
--- plog/trunk/class/summary/action/doreadagreement.class.php	2006-06-26 21:18:30 UTC (rev 3656)
+++ plog/trunk/class/summary/action/doreadagreement.class.php	2006-06-26 21:20:59 UTC (rev 3657)
@@ -2,6 +2,7 @@
 
 	include_once( PLOG_CLASS_PATH."class/summary/action/registeraction.class.php" );
 	include_once( PLOG_CLASS_PATH."class/config/config.class.php" );
+	include_once( PLOG_CLASS_PATH."class/summary/view/summaryusercreationview.class.php" );	
 
 	/**
 	 * shows a form so that users can register
@@ -10,14 +11,12 @@
 	{
         function perform()
         {
-    		if( $this->_config->getValue( "summary_show_agreement" )) {
+    		if( $this->_config->getValue( "summary_show_agreement" ))
     		    $this->_view = new SummaryView( "registerstep0" );
-	            $this->setCommonData();    		    
-	        }
-	    	else {
-	    		SummaryController::setForwardAction( "RegisterStep1" );
-		    }
+	    	else
+    		    $this->_view = new SummaryUserCreationView();
 		    
+            $this->setCommonData();		
 		    return( true );
         }
     }	 



More information about the pLog-svn mailing list