Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17494 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80083 invoked by uid 1010); 2 Aug 2005 14:42:04 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 80068 invoked from network); 2 Aug 2005 14:42:04 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 2 Aug 2005 14:42:04 -0000 X-Host-Fingerprint: 64.233.184.206 wproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.184.206:20874] helo=wproxy.gmail.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id BA/F9-04646-C368FE24 for ; Tue, 02 Aug 2005 10:42:04 -0400 Received: by wproxy.gmail.com with SMTP id i4so1225848wra for ; Tue, 02 Aug 2005 07:42:00 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ZEdGxiBL5zA4JHuENFCJzfEFhA8EmS8Cfqwvn2KGKrv5u4lrxgGVmORwZII/WEo6KSKwrXPZc7IOJNmjJqCJ/DaqmhWuTThK9VwVlvZmj1+rO4D6Nrht1DJf5qClsP4P75rNjHbArZjFGalm9EU/F4CX6WwEuGCWYyCZ9AQX+vU= Received: by 10.54.44.46 with SMTP id r46mr3813184wrr; Tue, 02 Aug 2005 07:42:00 -0700 (PDT) Received: by 10.54.25.23 with HTTP; Tue, 2 Aug 2005 07:42:00 -0700 (PDT) Message-ID: <344de28705080207426616205a@mail.gmail.com> Date: Tue, 2 Aug 2005 15:42:00 +0100 Reply-To: meno.abels@adviser.com To: internals@lists.php.net Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: parent::construct not reliable working on php5.1 b2/b3 From: meno.abels@gmail.com (Meno Abels) Hello, With my application that uses heavily inherent classes, sometimes I get the following message: PHP Fatal error: Call to undefined method Rank::_construtor() in .../inc/Links.class.php. It works with php 4.x when I use the old style of constructor calling=20 $this->(CLASSNAME) . But when working with php 5.2 b2 or b3 in the old OR the new style, I get the PHP Fatal error from above. Is there any hints to look at this problem? regards meno