Assigning the return value of new by reference is deprecated
Brought to you by:
akapanamajack
With PHP5 I get many "Assigning the return value of new by reference is deprecated." in almost all drivers.
I have looked into adoDB lite for the string
=& new
and replaced everything with a construct like:
$tmp = new ...
... =& $tmp;
It worked