I think, as for PHP4, that the problem is this function:
> function object_2(&$parent_object)
> {
> $this->my_parent = $parent_object;
> }
Although you are passing the object by reference you're assigning a copy of
it.
Try this:
$this->my_parent = &$parent_object;
Manu.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

