Bug #25013 ยป 25013_4-5.diff
t3lib/class.t3lib_registry.php | ||
---|---|---|
);
|
||
}
|
||
$this->entries[$namespace][$key] = $value;
|
||
// Only save the entry in memory if other entries of the same namespace are loaded.
|
||
// If we do not do so, ->get() might fail for other entries in the same script run.
|
||
if (isset($this->entries[$namespace])) {
|
||
$this->entries[$namespace][$key] = $value;
|
||
}
|
||
}
|
||
/**
|