From b66cbd2abfc6252a5e0b754efc94cd1d0645d008 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sat, 7 Feb 2015 01:28:06 +0100 Subject: [PATCH] Businessprocess\Controller: fix hard state param --- library/Businessprocess/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Businessprocess/Controller.php b/library/Businessprocess/Controller.php index 680ad40..1de0573 100644 --- a/library/Businessprocess/Controller.php +++ b/library/Businessprocess/Controller.php @@ -66,7 +66,7 @@ class Controller extends ModuleActionController if ($stateType === 'soft') { $bp->useSoftStates(); } - if ($stateType === 'soft') { + if ($stateType === 'hard') { $bp->useHardStates(); } }