BUG-14226 The row '' in table Dynaform doesn't exist! SOLVED

- the variable of session no exist.
- add variable of session 'CONDITION_DYN_UID' in cases_PrintView.php
This commit is contained in:
Marco Antonio Nina
2014-05-08 16:29:29 -04:00
parent 186412ebfd
commit dd51d98c80

View File

@@ -33,6 +33,8 @@ try {
$currentDynUid = $_SESSION['DYN_UID_PRINT'];
} elseif (isset( $_SESSION['CURRENT_DYN_UID'] )) {
$currentDynUid = $_SESSION['CURRENT_DYN_UID'];
} elseif (isset( $_SESSION['CONDITION_DYN_UID'] )) {
$currentDynUid = $_SESSION['CONDITION_DYN_UID'];
}
$oDynaform = new Dynaform();