bugfix/HOR-2067

This commit is contained in:
Paula Quispe
2017-03-21 15:02:53 -04:00
parent 3ebf5eea42
commit 873c8d0723
5 changed files with 28 additions and 4 deletions

View File

@@ -57,7 +57,12 @@ if (isset( $_SESSION['STEP_POSITION'] )) {
unset( $_SESSION['STEP_POSITION'] );
}
/* Process */
//If didn't is not submitted any variable and the $_POST is empty
if (!isset($_POST['form'])) {
$_POST['form'] = array();
}
/* Process */
try {
$oCase = new Cases();
$aData = $oCase->startCase( $_POST['form']['TAS_UID'], $_SESSION['USER_LOGGED'] );