Forum Moderators: coopster
Strict Standards: Only variables should be assigned by reference in C:\blah\blah\something.php on line 20 Now I understand that it is talking about the part of my code that looks like (note the &)...
$this->controls =& $this->commonEntityData->getControls(); My question is, how should I make sure that the variable passed back from a function is passed by reference and not value?
Thanks all.