mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #1335 from chillu/pulls/config-clone-nest
FIX Clone Config_LRU incl. objects in array
This commit is contained in:
commit
8dbdb00400
@ -623,6 +623,20 @@ class Config_LRU {
|
||||
$this->indexing = array();
|
||||
}
|
||||
|
||||
public function __clone() {
|
||||
if (version_compare(PHP_VERSION, '5.3.7', '<')) {
|
||||
// SplFixedArray causes seg faults before PHP 5.3.7
|
||||
$cloned = array();
|
||||
}
|
||||
else {
|
||||
$cloned = new SplFixedArray(self::SIZE);
|
||||
}
|
||||
for ($i = 0; $i < self::SIZE; $i++) {
|
||||
$cloned[$i] = clone $this->cache[$i];
|
||||
}
|
||||
$this->cache = $cloned;
|
||||
}
|
||||
|
||||
public function set($key, $val, $tags = array()) {
|
||||
// Find an index to set at
|
||||
$replacing = null;
|
||||
|
Loading…
Reference in New Issue
Block a user