From: Roland Häder Date: Fri, 18 May 2012 20:03:08 +0000 (+0000) Subject: Missing fields may debugging X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=4d4f379499f2e2eb9061924c5576063a698ed88b Missing fields may debugging --- 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;