// "Walk" over all entries
foreach ($this->getEntries('object-name') as $key=>$value) {
+ // Debug message
+ //* DEBUG: */ $this->debugOutput('REGISTRY: Checking key=' . $key . ',value=' . $value . ',lookFor=' . $lookFor);
+
// If $value matches the $lookFor, we need to look for more entries for this!
if ($lookFor == $value) {
// Look for more entries
foreach ($this->getEntries() as $key2=>$value2) {
+ // Debug message
+ //* DEBUG: */ $this->debugOutput('REGISTRY: Checking key2=' . $key2 . ',value2=' . print_r($value2, true) . ',lookFor=' . $lookFor);
+
// Both keys must match!
- if ($key == $key2) {
+ if (($key == $key2) || (isset($value2[$key]))) {
+ // Debug message
+ //* DEBUG: */ $this->debugOutput('REGISTRY: Adding ' . $value2[$key] . ' ...');
+
// Then add it
$entry[$key2] = $value2[$key];
} // END - if