From: Coleman Watts Date: Tue, 10 Jun 2014 14:30:24 +0000 (+0100) Subject: CRM-12872 - Revert next action redirect X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e6a0a3015a27e0bfefd29fa4e8bbac52c4853914;p=civicrm-core.git CRM-12872 - Revert next action redirect --- diff --git a/CRM/Core/StateMachine.php b/CRM/Core/StateMachine.php index 7a0517a29e..b1cd60f620 100644 --- a/CRM/Core/StateMachine.php +++ b/CRM/Core/StateMachine.php @@ -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];