BUG 7657 Dependent Fields don't work SOLVED

- I was found a constant c.
- The constant was changed for the correct variable.

rk SOLVED

- I was found a constant c.
- The constant was changed for the correct variable.
This commit is contained in:
Marco Antonio Nina
2012-05-29 10:31:00 -04:00
parent 489c58b7b5
commit e8c892f818

View File

@@ -54,7 +54,7 @@
}
$G_FORM=new form( $xmlFile , $sPath );
$G_FORM->id=urlDecode($_POST['form']);
$G_FORM->values=isset($_SESSION[c]) ? $_SESSION[$G_FORM->id] : array();
$G_FORM->values=isset($_SESSION[$G_FORM->id]) ? $_SESSION[$G_FORM->id] : array();
$newValues=($json->decode(urlDecode(stripslashes($_POST['fields']))));
if (isset($_POST['grid'])) {
$_POST['row'] = (int)$_POST['row'];