CustomVariableArray: temporary ugly array diff fix

This commit is contained in:
Thomas Gelf 2015-06-12 13:38:06 +02:00
parent 8ae4ed6bfa
commit 47c95be455
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ class CustomVariableArray extends CustomVariable
return false;
}
return $var->getValue() === $this->getValue();
// TODO: better var handlig, fix this
return $var->value === $this->value;
}
public function setValue($value)