diff --git a/workflow/engine/methods/cases/cases_Derivate.php b/workflow/engine/methods/cases/cases_Derivate.php index 32f9f6b99..37c28555b 100644 --- a/workflow/engine/methods/cases/cases_Derivate.php +++ b/workflow/engine/methods/cases/cases_Derivate.php @@ -69,7 +69,7 @@ G::LoadClass( 'pmScript' ); G::LoadClass( 'case' ); G::LoadClass( 'derivation' ); -//If didn't is not submitted any variable and the $_POST is empty +//If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); } diff --git a/workflow/engine/methods/cases/cases_Save.php b/workflow/engine/methods/cases/cases_Save.php index 72e9d8891..3831ae2b5 100644 --- a/workflow/engine/methods/cases/cases_Save.php +++ b/workflow/engine/methods/cases/cases_Save.php @@ -57,7 +57,7 @@ if (isset( $_SESSION['STEP_POSITION'] )) { unset( $_SESSION['STEP_POSITION'] ); } -//If didn't is not submitted any variable and the $_POST is empty +//If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); } diff --git a/workflow/engine/methods/cases/cases_SaveData.php b/workflow/engine/methods/cases/cases_SaveData.php index d0c925e85..a729ef251 100644 --- a/workflow/engine/methods/cases/cases_SaveData.php +++ b/workflow/engine/methods/cases/cases_SaveData.php @@ -103,7 +103,7 @@ try { $arrayVariableDocumentToDelete = []; - //If didn't is not submitted any variable and the $_POST is empty + //If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); } diff --git a/workflow/engine/methods/cases/cases_SaveDataSupervisor.php b/workflow/engine/methods/cases/cases_SaveDataSupervisor.php index 79c8b13de..65e5a34be 100644 --- a/workflow/engine/methods/cases/cases_SaveDataSupervisor.php +++ b/workflow/engine/methods/cases/cases_SaveDataSupervisor.php @@ -27,7 +27,7 @@ $dynaForm = DynaformPeer::retrieveByPK($_GET["UID"]); $flagDynaFormNewVersion = !is_null($dynaForm) && $dynaForm->getDynVersion() == 2; -//If didn't is not submitted any variable and the $_POST is empty +//If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); } diff --git a/workflow/engine/methods/cases/saveForm.php b/workflow/engine/methods/cases/saveForm.php index 3cb195ead..d9c45b019 100644 --- a/workflow/engine/methods/cases/saveForm.php +++ b/workflow/engine/methods/cases/saveForm.php @@ -43,7 +43,7 @@ try { $Fields["APP_DATA"] = array_merge( $Fields["APP_DATA"], G::getSystemConstants() ); $Fields["APP_DATA"] = array_merge( $Fields["APP_DATA"], $_POST["form"] ); - //If didn't is not submitted any variable and the $_POST is empty + //If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); } diff --git a/workflow/engine/templates/processes/webentryPost.tpl b/workflow/engine/templates/processes/webentryPost.tpl index 82190a6df..6b67012a4 100644 --- a/workflow/engine/templates/processes/webentryPost.tpl +++ b/workflow/engine/templates/processes/webentryPost.tpl @@ -36,7 +36,7 @@ try { $row = $a->getRow(); $swpmdynaform = isset($row) && $row["DYN_VERSION"] == 2; - //If didn't is not submitted any variable and the $_POST is empty + //If no variables are submitted and the $_POST variable is empty if (!isset($_POST['form'])) { $_POST['form'] = array(); }