CustomVariableDictionary: our 'value' is an array

This commit is contained in:
Thomas Gelf 2015-08-28 23:39:14 +02:00
parent b80a7c3589
commit ae9e4300c8

View File

@ -67,7 +67,7 @@ class CustomVariableDictionary extends CustomVariable implements Countable
public function __clone()
{
foreach ($this->value as $key => $value) {
$this->value->$key = clone($value);
$this->value[$key] = clone($value);
}
}