Update message

This commit is contained in:
Paula Quispe
2017-03-22 11:24:59 -04:00
parent ef8503b3f4
commit bcd6f5d403
6 changed files with 6 additions and 6 deletions

View File

@@ -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();
}

View File

@@ -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();
}

View File

@@ -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();
}

View File

@@ -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();
}

View File

@@ -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();
}

View File

@@ -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();
}