CustomVariableArray: temporary ugly array diff fix
This commit is contained in:
parent
8ae4ed6bfa
commit
47c95be455
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue