$entry = array();
// "Walk" over all entries
- foreach ($this->getEntries('object-name') as $key=>$value) {
+ 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) {
+ foreach ($this->getEntries() as $key2 => $value2) {
// Debug message
//* DEBUG: */ $this->debugOutput('REGISTRY: Checking key2=' . $key2 . ',value2=' . print_r($value2, true) . ',lookFor=' . $lookFor);
} // END - if
// Iterate through all general variables
- foreach ($this->getVarStack('general') as $index=>$currVariable) {
+ foreach ($this->getVarStack('general') as $index => $currVariable) {
// Compile the value
$value = $this->compileRawCode($this->readVariable($currVariable['name']), true);