You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Compare with null since this is what findValueInArray returns on error
781
+
// Compare with false since this is what findValueInArray returns on error
782
782
// this will prevent things such as empty arrays from causing errors
783
-
if ($dsData === null) {
783
+
if ($dsData === false) {
784
784
// ds has no description to match value!
785
785
i5ErrorActivity(I5_ERR_PARAMNOTFOUND, I5_CAT_PHP, "Requested parameter '$dsName' does not exist in the input data", "Requested parameter $dsName does not exist in the input data");
0 commit comments