"Assigning the return value of new by reference is deprecated"
<5.x.x
$node_obj =& new someClass($somearg, $moreargs);
>=5.x.x
$node_obj = new someClass($somearg, $moreargs);
and it's a good thing to unset($node_obj) before the assignment, especially in loops.
I am not sure in which version of php the deprecation took place. In my 5.3.0 it surely is.
Also may I request you consider upcoming events displayed in Calendar plz?
Thanx a mil.
|