diff --git a/workflow/engine/classes/class.pmFunctions.php b/workflow/engine/classes/class.pmFunctions.php index 8bcfea764..3872c26ca 100755 --- a/workflow/engine/classes/class.pmFunctions.php +++ b/workflow/engine/classes/class.pmFunctions.php @@ -2097,7 +2097,7 @@ function PMFAssignUserToGroup ($userId, $groupId) * @label PMF Create User * @link http://wiki.processmaker.com/index.php/ProcessMaker_Functions#PMFCreateUser.28.29 * - * @param string(32) | $userId | User ID | The username for the new user. + * @param string(32) | $userId | User Name | The username for the new user. * @param string(32) | $password | Password of the new user | The password of the new user, which can be up to 32 characters long. * @param string(32) | $firstname | Firstname of the new user | The first name of the user, which can be up to 50 characters long. * @param string(32) | $lastname | Lastname of the new user | The last name of the user, which can be up to 50 characters long. @@ -2881,17 +2881,17 @@ function PMFRemoveMask ($field, $separator = '.', $currency = '') * @return int | $result | Result of send variables | Returns 1 if the variables were sent successfully to the case; otherwise, returns 0 if an error occurred. * */ - + function PMFSaveCurrentData () { global $oPMScript; $result = 0; - + if (isset($_SESSION['APPLICATION']) && isset($oPMScript->aFields)) { G::LoadClass( 'wsBase' ); $ws = new wsBase(); $result = $ws->sendVariables( $_SESSION['APPLICATION'], $oPMScript->aFields ); } - + return $result; } \ No newline at end of file