X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;h=d42cfc3968cf0c06554df81e1d23c10c3dbb2015;hp=585e93771f29ec9d3c4ae7ce2054cd180f0a42eb;hb=4d4f379499f2e2eb9061924c5576063a698ed88b;hpb=ddc8b6b30361d35a304a2b0e596dafc154799dbf diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 585e9377..d42cfc39 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -1632,7 +1632,10 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { if (isset($fieldArray[$fieldName])) { // Get it $fieldValue = $fieldArray[$fieldName]; - } // END - if + } else { + // Missing field entry, may require debugging + $this->debugOutput($this->__toString() . ':fieldname=' . $fieldName . ' not found!'); + } // Return it return $fieldValue;