CRM-12872 - Revert next action redirect
authorColeman Watts <coleman@civicrm.org>
Tue, 10 Jun 2014 14:30:24 +0000 (15:30 +0100)
committerColeman Watts <coleman@civicrm.org>
Tue, 10 Jun 2014 14:30:24 +0000 (15:30 +0100)
CRM/Core/StateMachine.php

index 7a0517a29e08690bb0310fce49565a926b286902..b1cd60f6201c0509b761b5c4377fe4b98a946ac7 100644 (file)
@@ -159,7 +159,7 @@ class CRM_Core_StateMachine {
 
     // the page is valid, process it if we are jumping to the next state
     if ($type == 'Next') {
-      $page->mainProcess(FALSE);
+      $page->mainProcess();
       // we get the state again, since postProcess might have changed it
       // this bug took me forever to find :) Lobo
       $state = &$this->_states[$pageName];