Posted by Marcin Dobrucki on 10/24/06 12:36
comp.lang.php wrote:
>
> if (@!is_class($this->dbAP, 'DBActionPerformer')) $this->dbAP =& new
> DBActionPerformer(); // LOCAL INSTANTIATION UNLESS ALREADY EXISTING
I don't know about the actual unlinking of zip files, etc, but AFAIK
you can't create objects by reference. This should be:
....$this->dbAP = new DBActionPerformer();
Navigation:
[Reply to this message]
|