Fix error «Call-time pass-by-reference has been deprecated»

This commit is contained in:
unknown 2011-05-04 13:22:50 +04:00
parent 0615574123
commit 8a0d34c288

View file

@ -7,7 +7,7 @@ class Call extends AbstractRelated
public function getReferenceValue($input)
{
return call_user_func($this->reference, &$input);
return call_user_func_array($this->reference, array(&$input));
}
public function hasReference($input)