Merge pull request #1887 from Jennydmz/BUG-11846
BUG 11846 Al importar un proceso PM siempre debe tomar al usuario actual como Process Owner.
This commit is contained in:
@@ -105,6 +105,7 @@ if ($action == "uploadFileNewProcess") {
|
||||
$tempName = $_FILES['form']['tmp_name']['PROCESS_FILENAME'];
|
||||
//$action = "none";
|
||||
G::uploadFile( $tempName, $path, $filename );
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -157,15 +158,9 @@ if ($action == "uploadFileNewProcess") {
|
||||
}
|
||||
}
|
||||
|
||||
//replacing a nonexistent user for the current user
|
||||
$UsrUid = $oData->process['PRO_CREATE_USER'];
|
||||
//replacing the processOwner user for the current user
|
||||
|
||||
G::LoadClass( 'Users' );
|
||||
$user = new Users();
|
||||
if (!$user->userExists( $UsrUid ))
|
||||
{
|
||||
$oData->process['PRO_CREATE_USER'] = $_SESSION['USER_LOGGED'];
|
||||
}
|
||||
$oData->process['PRO_CREATE_USER'] = $_SESSION['USER_LOGGED'];
|
||||
|
||||
//!respect of the groups
|
||||
|
||||
|
||||
Reference in New Issue
Block a user